diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-03-24 17:26:13 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-03-24 20:01:50 +0300 |
commit | 8fb303c7f1118b0a82aa08e33429adf9b5ad192c (patch) | |
tree | f0da545839b23136dd2dd167125d3c4bef920348 /include/asm-mips/sibyte | |
parent | 41a8198f61d858bcad7ef705d5d3ec3e3a8dea4a (diff) | |
download | linux-8fb303c7f1118b0a82aa08e33429adf9b5ad192c.tar.xz |
[MIPS] SB1250: Fix bugs/warnings by creative use of volatile.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/sibyte')
-rw-r--r-- | include/asm-mips/sibyte/sb1250.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/sibyte/sb1250.h b/include/asm-mips/sibyte/sb1250.h index dfb29e13bce0..494aa65dcfbd 100644 --- a/include/asm-mips/sibyte/sb1250.h +++ b/include/asm-mips/sibyte/sb1250.h @@ -67,6 +67,6 @@ extern void bcm1480_smp_finish(void); #endif -#define IOADDR(a) ((volatile void __iomem *)(IO_BASE + (a))) +#define IOADDR(a) ((void __iomem *)(IO_BASE + (a))) #endif |