diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2005-06-24 18:11:31 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-06-24 18:11:31 -0400 |
commit | 7533fca8e866ee7355ca53f1216e3fa4c718f991 (patch) | |
tree | af4d8698fe1bc32854dcc0c81ed99211e4e53207 /include/asm-arm/io.h | |
parent | 79042f087b5ac7bba819de03dc3e7462bab8aad9 (diff) |
[PATCH] ARM: 2747/1: allow platforms to provide their own iomap implementation
Patch from Lennert Buytenhek
This patch conditionalises the io{read,write}{8,16,32} defines and the
prototypes for ioport_map/ioport_unmap in asm-arm/io.h on ioread8 not
already having been defined. This is done so that platforms can provide
their own implementation of the iomap API, ixp2000 for example needs
this.
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Deepak Saxena
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/io.h')
-rw-r--r-- | include/asm-arm/io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-arm/io.h b/include/asm-arm/io.h index 08a46302d265..cc4b5f5dbfcf 100644 --- a/include/asm-arm/io.h +++ b/include/asm-arm/io.h | |||
@@ -275,6 +275,7 @@ extern void __iounmap(void __iomem *addr); | |||
275 | /* | 275 | /* |
276 | * io{read,write}{8,16,32} macros | 276 | * io{read,write}{8,16,32} macros |
277 | */ | 277 | */ |
278 | #ifndef ioread8 | ||
278 | #define ioread8(p) ({ unsigned int __v = __raw_readb(p); __v; }) | 279 | #define ioread8(p) ({ unsigned int __v = __raw_readb(p); __v; }) |
279 | #define ioread16(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(p)); __v; }) | 280 | #define ioread16(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(p)); __v; }) |
280 | #define ioread32(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(p)); __v; }) | 281 | #define ioread32(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(p)); __v; }) |
@@ -293,6 +294,7 @@ extern void __iounmap(void __iomem *addr); | |||
293 | 294 | ||
294 | extern void __iomem *ioport_map(unsigned long port, unsigned int nr); | 295 | extern void __iomem *ioport_map(unsigned long port, unsigned int nr); |
295 | extern void ioport_unmap(void __iomem *addr); | 296 | extern void ioport_unmap(void __iomem *addr); |
297 | #endif | ||
296 | 298 | ||
297 | struct pci_dev; | 299 | struct pci_dev; |
298 | 300 | ||