xref: /openbmc/linux/arch/um/include/asm/io.h (revision 762f99f4f3cb41a775b5157dd761217beba65873)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21bcbfbfdSLogan Gunthorpe #ifndef _ASM_UM_IO_H
31bcbfbfdSLogan Gunthorpe #define _ASM_UM_IO_H
4cc3ac20fSJohannes Berg #include <linux/types.h>
51bcbfbfdSLogan Gunthorpe 
6*68f5d3f3SJohannes Berg /* get emulated iomem (if desired) */
7*68f5d3f3SJohannes Berg #include <asm-generic/logic_io.h>
8*68f5d3f3SJohannes Berg 
9*68f5d3f3SJohannes Berg #ifndef ioremap
101bcbfbfdSLogan Gunthorpe #define ioremap ioremap
ioremap(phys_addr_t offset,size_t size)111bcbfbfdSLogan Gunthorpe static inline void __iomem *ioremap(phys_addr_t offset, size_t size)
121bcbfbfdSLogan Gunthorpe {
131cdcfb44SJohannes Berg 	return NULL;
141bcbfbfdSLogan Gunthorpe }
15*68f5d3f3SJohannes Berg #endif /* ioremap */
161bcbfbfdSLogan Gunthorpe 
17*68f5d3f3SJohannes Berg #ifndef iounmap
181bcbfbfdSLogan Gunthorpe #define iounmap iounmap
iounmap(void __iomem * addr)191bcbfbfdSLogan Gunthorpe static inline void iounmap(void __iomem *addr)
201bcbfbfdSLogan Gunthorpe {
211bcbfbfdSLogan Gunthorpe }
22*68f5d3f3SJohannes Berg #endif /* iounmap */
231bcbfbfdSLogan Gunthorpe 
241bcbfbfdSLogan Gunthorpe #include <asm-generic/io.h>
251bcbfbfdSLogan Gunthorpe 
261bcbfbfdSLogan Gunthorpe #endif
27