diff options
author | Johannes Berg <johannes.berg@intel.com> | 2020-12-17 15:15:56 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2021-01-27 00:11:37 +0300 |
commit | 1cdcfb44370b28187a0c33cdbcb4705103ed81aa (patch) | |
tree | 6a52fd9b05491dc4ab469c85303b9df042886a23 /arch/um | |
parent | 94c41b3a7c370b0d6afc5ace8fafa0531865a940 (diff) | |
download | linux-1cdcfb44370b28187a0c33cdbcb4705103ed81aa.tar.xz |
um: return error from ioremap()
Back a few years ago, ioremap() was added to UML so that we'd
not break the build for everything all the time. However, for
some reason, v1 of the patch got applied, rather than the v2
that returned NULL, which was discussed here:
https://lore.kernel.org/lkml/1495726955-27497-1-git-send-email-logang@deltatee.com/
Fix that now.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/include/asm/io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/include/asm/io.h b/arch/um/include/asm/io.h index 96f77b5232aa..cef03e3aa0f9 100644 --- a/arch/um/include/asm/io.h +++ b/arch/um/include/asm/io.h @@ -5,7 +5,7 @@ #define ioremap ioremap static inline void __iomem *ioremap(phys_addr_t offset, size_t size) { - return (void __iomem *)(unsigned long)offset; + return NULL; } #define iounmap iounmap |