xref: /openbmc/linux/arch/um/include/asm/io.h (revision 31e67366)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_UM_IO_H
3 #define _ASM_UM_IO_H
4 #include <linux/types.h>
5 
6 #define ioremap ioremap
7 static inline void __iomem *ioremap(phys_addr_t offset, size_t size)
8 {
9 	return NULL;
10 }
11 
12 #define iounmap iounmap
13 static inline void iounmap(void __iomem *addr)
14 {
15 }
16 
17 #include <asm-generic/io.h>
18 
19 #endif
20