diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-10-28 09:25:28 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-10-28 09:25:28 -0400 |
commit | 674c04538284736c4a44224c78cb784b2c972f98 (patch) | |
tree | b975860890debe5fadcafd4137ad3112f1784849 /include/asm-arm/arch-sa1100/io.h | |
parent | c6b8fdad144bbb915d124ffd95011ad55730bf9f (diff) |
[ARM] 3/4: Remove asm/hardware.h from SA1100 io.h
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-sa1100/io.h')
-rw-r--r-- | include/asm-arm/arch-sa1100/io.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-arm/arch-sa1100/io.h b/include/asm-arm/arch-sa1100/io.h index 9c8f588f35db..9d4fe6cf205b 100644 --- a/include/asm-arm/arch-sa1100/io.h +++ b/include/asm-arm/arch-sa1100/io.h | |||
@@ -18,7 +18,11 @@ | |||
18 | * We don't actually have real ISA nor PCI buses, but there is so many | 18 | * We don't actually have real ISA nor PCI buses, but there is so many |
19 | * drivers out there that might just work if we fake them... | 19 | * drivers out there that might just work if we fake them... |
20 | */ | 20 | */ |
21 | #define __io(a) ((void __iomem *)(PCIO_BASE + (a))) | 21 | static inline void __iomem *__io(unsigned long addr) |
22 | { | ||
23 | return (void __iomem *)addr; | ||
24 | } | ||
25 | #define __io(a) __io(a) | ||
22 | #define __mem_pci(a) (a) | 26 | #define __mem_pci(a) (a) |
23 | #define __mem_isa(a) (a) | 27 | #define __mem_isa(a) (a) |
24 | 28 | ||