diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2019-03-15 15:14:34 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-22 11:55:58 -0400 |
commit | d28c5920cd40489bc1d75603c66658f3cf80579b (patch) | |
tree | 1e4dd9b96e2b2a96873a897ba60b5e16ea0f0556 /include/linux/io.h | |
parent | 6478848d165b63293f7021db9b70ce25a1e1062c (diff) | |
download | u-boot-d28c5920cd40489bc1d75603c66658f3cf80579b.zip u-boot-d28c5920cd40489bc1d75603c66658f3cf80579b.tar.gz u-boot-d28c5920cd40489bc1d75603c66658f3cf80579b.tar.bz2 |
include: linux: io: define devm_ioremap on board with ioremap
The macro devm_ioremap is only defined for configuration
that doesn't have ioremap. But this macro may also be
defined on configuration with ioremap.
This patch remove the condition for the macro devm_ioremap,
so it's always defined.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Diffstat (limited to 'include/linux/io.h')
-rw-r--r-- | include/linux/io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/io.h b/include/linux/io.h index 9badab4..7984788 100644 --- a/include/linux/io.h +++ b/include/linux/io.h @@ -65,8 +65,8 @@ static inline void __iomem *ioremap(resource_size_t offset, static inline void iounmap(void __iomem *addr) { } +#endif #define devm_ioremap(dev, offset, size) ioremap(offset, size) -#endif #endif /* _LINUX_IO_H */ |