diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-03-24 14:26:13 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-03-24 17:01:50 +0000 |
commit | 8fb303c7f1118b0a82aa08e33429adf9b5ad192c (patch) | |
tree | f0da545839b23136dd2dd167125d3c4bef920348 /drivers/net/sb1250-mac.c | |
parent | 41a8198f61d858bcad7ef705d5d3ec3e3a8dea4a (diff) | |
download | linux-3.10-8fb303c7f1118b0a82aa08e33429adf9b5ad192c.tar.gz linux-3.10-8fb303c7f1118b0a82aa08e33429adf9b5ad192c.tar.bz2 linux-3.10-8fb303c7f1118b0a82aa08e33429adf9b5ad192c.zip |
[MIPS] SB1250: Fix bugs/warnings by creative use of volatile.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'drivers/net/sb1250-mac.c')
-rw-r--r-- | drivers/net/sb1250-mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sb1250-mac.c b/drivers/net/sb1250-mac.c index 1eae16b72b4..103c3174ab5 100644 --- a/drivers/net/sb1250-mac.c +++ b/drivers/net/sb1250-mac.c @@ -243,7 +243,7 @@ struct sbmac_softc { * Controller-specific things */ - volatile void __iomem *sbm_base; /* MAC's base address */ + void __iomem *sbm_base; /* MAC's base address */ sbmac_state_t sbm_state; /* current state */ volatile void __iomem *sbm_macenable; /* MAC Enable Register */ |