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-x86_64/io.h | |
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-x86_64/io.h')
-rw-r--r-- | include/asm-x86_64/io.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/asm-x86_64/io.h b/include/asm-x86_64/io.h index 9dac18db8291..a85fe8370820 100644 --- a/include/asm-x86_64/io.h +++ b/include/asm-x86_64/io.h | |||
@@ -269,23 +269,11 @@ void memset_io(volatile void __iomem *a, int b, size_t c); | |||
269 | */ | 269 | */ |
270 | #define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET)) | 270 | #define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET)) |
271 | 271 | ||
272 | #define isa_readb(a) readb(__ISA_IO_base + (a)) | ||
273 | #define isa_readw(a) readw(__ISA_IO_base + (a)) | ||
274 | #define isa_readl(a) readl(__ISA_IO_base + (a)) | ||
275 | #define isa_writeb(b,a) writeb(b,__ISA_IO_base + (a)) | ||
276 | #define isa_writew(w,a) writew(w,__ISA_IO_base + (a)) | ||
277 | #define isa_writel(l,a) writel(l,__ISA_IO_base + (a)) | ||
278 | #define isa_memset_io(a,b,c) memset_io(__ISA_IO_base + (a),(b),(c)) | ||
279 | #define isa_memcpy_fromio(a,b,c) memcpy_fromio((a),__ISA_IO_base + (b),(c)) | ||
280 | #define isa_memcpy_toio(a,b,c) memcpy_toio(__ISA_IO_base + (a),(b),(c)) | ||
281 | |||
282 | |||
283 | /* | 272 | /* |
284 | * Again, x86-64 does not require mem IO specific function. | 273 | * Again, x86-64 does not require mem IO specific function. |
285 | */ | 274 | */ |
286 | 275 | ||
287 | #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(b),(c),(d)) | 276 | #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(b),(c),(d)) |
288 | #define isa_eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(__ISA_IO_base + (b)),(c),(d)) | ||
289 | 277 | ||
290 | /** | 278 | /** |
291 | * check_signature - find BIOS signatures | 279 | * check_signature - find BIOS signatures |