treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / mips / include / asm / mach-generic / ioremap.h
blob4e36ea25ed33c280f4a8e8d0018d626a29ce1f5b
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
8 #include <linux/types.h>
11 * Allow physical addresses to be fixed up to help peripherals located
12 * outside the low 32-bit range -- generic pass-through version.
14 static inline phys_addr_t fixup_bigphys_addr(phys_addr_t phys_addr, phys_addr_t size)
16 return phys_addr;
19 static inline void __iomem *plat_ioremap(phys_addr_t offset, unsigned long size,
20 unsigned long flags)
22 return NULL;
25 static inline int plat_iounmap(const volatile void __iomem *addr)
27 return 0;
30 #endif /* __ASM_MACH_GENERIC_IOREMAP_H */