diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-03-24 06:15:41 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:19 -0500 |
commit | 57f3ebccaa560d1eeb40b5c719773bed5cb0df46 (patch) | |
tree | 5c475fe84dbd352f9758f63c20a3c76c1b89c8ca /include/asm-i386 | |
parent | c44fec118b62baad3fc70e2ef3447729a1d9b194 (diff) |
[PATCH] remove ISA legacy functions: remove the helpers
unused isa_...() helpers removed.
Adrian Bunk:
The asm-sh part was rediffed due to unrelated changes.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-i386')
-rw-r--r-- | include/asm-i386/io.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/asm-i386/io.h b/include/asm-i386/io.h index 03233c2ab820..79670bb4b0c7 100644 --- a/include/asm-i386/io.h +++ b/include/asm-i386/io.h | |||
@@ -219,23 +219,11 @@ static inline void memcpy_toio(volatile void __iomem *dst, const void *src, int | |||
219 | */ | 219 | */ |
220 | #define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET)) | 220 | #define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET)) |
221 | 221 | ||
222 | #define isa_readb(a) readb(__ISA_IO_base + (a)) | ||
223 | #define isa_readw(a) readw(__ISA_IO_base + (a)) | ||
224 | #define isa_readl(a) readl(__ISA_IO_base + (a)) | ||
225 | #define isa_writeb(b,a) writeb(b,__ISA_IO_base + (a)) | ||
226 | #define isa_writew(w,a) writew(w,__ISA_IO_base + (a)) | ||
227 | #define isa_writel(l,a) writel(l,__ISA_IO_base + (a)) | ||
228 | #define isa_memset_io(a,b,c) memset_io(__ISA_IO_base + (a),(b),(c)) | ||
229 | #define isa_memcpy_fromio(a,b,c) memcpy_fromio((a),__ISA_IO_base + (b),(c)) | ||
230 | #define isa_memcpy_toio(a,b,c) memcpy_toio(__ISA_IO_base + (a),(b),(c)) | ||
231 | |||
232 | |||
233 | /* | 222 | /* |
234 | * Again, i386 does not require mem IO specific function. | 223 | * Again, i386 does not require mem IO specific function. |
235 | */ | 224 | */ |
236 | 225 | ||
237 | #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void __force *)(b),(c),(d)) | 226 | #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void __force *)(b),(c),(d)) |
238 | #define isa_eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void __force *)(__ISA_IO_base + (b)),(c),(d)) | ||
239 | 227 | ||
240 | /** | 228 | /** |
241 | * check_signature - find BIOS signatures | 229 | * check_signature - find BIOS signatures |