diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2006-09-14 00:55:36 -0400 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2006-09-20 00:12:22 -0400 |
commit | 19e59df4dc2e6f7b46190ee77ce7093769f597a7 (patch) | |
tree | 97860ac68308a91515fbdc1699d26a09aa9a0d10 /include/asm-powerpc | |
parent | 5adcaf50cf697aa4d0c731107003c1383b59b214 (diff) |
[POWERPC] iseries: eliminate a couple of warnings
Copy and paste bug in io.h
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-powerpc/io.h b/include/asm-powerpc/io.h index 57e7d14d6563..174fb89d5eda 100644 --- a/include/asm-powerpc/io.h +++ b/include/asm-powerpc/io.h | |||
@@ -68,8 +68,8 @@ extern unsigned long pci_io_base; | |||
68 | * for older code. | 68 | * for older code. |
69 | */ | 69 | */ |
70 | #define insb(port, buf, ns) _insb((u8 __iomem *)((port)+pci_io_base), (buf), (ns)) | 70 | #define insb(port, buf, ns) _insb((u8 __iomem *)((port)+pci_io_base), (buf), (ns)) |
71 | #define insw(port, buf, ns) _insw_ns((u8 __iomem *)((port)+pci_io_base), (buf), (ns)) | 71 | #define insw(port, buf, ns) _insw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns)) |
72 | #define insl(port, buf, nl) _insl_ns((u8 __iomem *)((port)+pci_io_base), (buf), (nl)) | 72 | #define insl(port, buf, nl) _insl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl)) |
73 | 73 | ||
74 | #else | 74 | #else |
75 | 75 | ||