aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/io.h
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-04-29 10:25:48 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2008-04-30 16:52:48 -0700
commit4f452e8aa492c0b8028ca9b4bdb4d018ba28c6c7 (patch)
tree9838a71adc6c9297bbedafc6ad2f2b36543fd0df /include/linux/io.h
parenta4ca6617421188f50774780cdc91c3782b7d08fe (diff)
downloadkernel_samsung_smdk4412-4f452e8aa492c0b8028ca9b4bdb4d018ba28c6c7.zip
kernel_samsung_smdk4412-4f452e8aa492c0b8028ca9b4bdb4d018ba28c6c7.tar.gz
kernel_samsung_smdk4412-4f452e8aa492c0b8028ca9b4bdb4d018ba28c6c7.tar.bz2
devres: support addresses greater than an unsigned long via dev_ioremap
Use a resource_size_t instead of unsigned long since some arch's are capable of having ioremap deal with addresses greater than the size of a unsigned long. Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Cc: Tejun Heo <htejun@gmail.com> Cc: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/io.h')
-rw-r--r--include/linux/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/io.h b/include/linux/io.h
index e3b2dda..3a03a36 100644
--- a/include/linux/io.h
+++ b/include/linux/io.h
@@ -58,9 +58,9 @@ static inline void devm_ioport_unmap(struct device *dev, void __iomem *addr)
}
#endif
-void __iomem * devm_ioremap(struct device *dev, unsigned long offset,
+void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
unsigned long size);
-void __iomem * devm_ioremap_nocache(struct device *dev, unsigned long offset,
+void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
unsigned long size);
void devm_iounmap(struct device *dev, void __iomem *addr);
int check_signature(const volatile void __iomem *io_addr,