1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASM_UM_IO_H 3#define _ASM_UM_IO_H 4#include <linux/types.h> 5 6#define ioremap ioremap 7static inline void __iomem *ioremap(phys_addr_t offset, size_t size) 8{ 9 return NULL; 10} 11 12#define iounmap iounmap 13static inline void iounmap(void __iomem *addr) 14{ 15} 16 17#include <asm-generic/io.h> 18 19#endif 20