Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  *  include/asm-mips/mach-generic/ioremap.h
0004  */
0005 #ifndef __ASM_MACH_GENERIC_IOREMAP_H
0006 #define __ASM_MACH_GENERIC_IOREMAP_H
0007 
0008 #include <linux/types.h>
0009 
0010 static inline void __iomem *plat_ioremap(phys_addr_t offset, unsigned long size,
0011     unsigned long flags)
0012 {
0013     return NULL;
0014 }
0015 
0016 static inline int plat_iounmap(const volatile void __iomem *addr)
0017 {
0018     return 0;
0019 }
0020 
0021 #endif /* __ASM_MACH_GENERIC_IOREMAP_H */