]> Git Repo - linux.git/blob - arch/mips/include/asm/mach-generic/ioremap.h
Merge remote-tracking branch 'spi/for-5.14' into spi-linus
[linux.git] / arch / mips / include / asm / mach-generic / ioremap.h
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 */
This page took 0.03203 seconds and 4 git commands to generate.