diff options
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/arch-ixp2000/io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/arch-ixp2000/io.h b/include/asm-arm/arch-ixp2000/io.h index 083462668e18..e5c742bc2330 100644 --- a/include/asm-arm/arch-ixp2000/io.h +++ b/include/asm-arm/arch-ixp2000/io.h | |||
@@ -27,8 +27,8 @@ | |||
27 | * since that isn't available on the A? revisions we just keep doing | 27 | * since that isn't available on the A? revisions we just keep doing |
28 | * things manually. | 28 | * things manually. |
29 | */ | 29 | */ |
30 | #define alignb(addr) (void __iomem *)((unsigned long)addr ^ 3) | 30 | #define alignb(addr) (void __iomem *)((unsigned long)(addr) ^ 3) |
31 | #define alignw(addr) (void __iomem *)((unsigned long)addr ^ 2) | 31 | #define alignw(addr) (void __iomem *)((unsigned long)(addr) ^ 2) |
32 | 32 | ||
33 | #define outb(v,p) __raw_writeb((v),alignb(___io(p))) | 33 | #define outb(v,p) __raw_writeb((v),alignb(___io(p))) |
34 | #define outw(v,p) __raw_writew((v),alignw(___io(p))) | 34 | #define outw(v,p) __raw_writew((v),alignw(___io(p))) |