1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * include/asm-mips/mach-generic/ioremap.h 4 */ 5 #ifndef __ASM_MACH_GENERIC_IOREMAP_H 6 #define __ASM_MACH_GENERIC_IOREMAP_H 7 8 #include <linux/types.h> 9 10 static inline void __iomem *plat_ioremap(phys_addr_t offset, unsigned long size, 11 unsigned long flags) 12 { 13 return NULL; 14 } 15 16 static inline int plat_iounmap(const volatile void __iomem *addr) 17 { 18 return 0; 19 } 20 21 #endif /* __ASM_MACH_GENERIC_IOREMAP_H */ 22