kernel
This commit is contained in:
parent
b59f84ee36
commit
cfab1d3ce7
83468 changed files with 37938688 additions and 0 deletions
linux-6.8.1/arch/sparc/include/asm
24
linux-6.8.1/arch/sparc/include/asm/io.h
Normal file
24
linux-6.8.1/arch/sparc/include/asm/io.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
#ifndef ___ASM_SPARC_IO_H
|
||||
#define ___ASM_SPARC_IO_H
|
||||
#if defined(__sparc__) && defined(__arch64__)
|
||||
#include <asm/io_64.h>
|
||||
#else
|
||||
#include <asm/io_32.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Defines used for both SPARC32 and SPARC64
|
||||
*/
|
||||
|
||||
/* Big endian versions of memory read/write routines */
|
||||
#define readb_be(__addr) __raw_readb(__addr)
|
||||
#define readw_be(__addr) __raw_readw(__addr)
|
||||
#define readl_be(__addr) __raw_readl(__addr)
|
||||
#define writeb_be(__b, __addr) __raw_writeb(__b, __addr)
|
||||
#define writel_be(__w, __addr) __raw_writel(__w, __addr)
|
||||
#define writew_be(__l, __addr) __raw_writew(__l, __addr)
|
||||
|
||||
#include <asm-generic/io.h>
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue