diff options
author | Arnaud Giersch <arnaud.giersch@free.fr> | 2005-11-13 00:38:18 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-11-17 16:23:48 +0000 |
commit | 59f145d28ce853b13dafdfab438c48f3ead0b38e (patch) | |
tree | e758652a96e8d63ac2b413bcba4266743af09d78 /arch | |
parent | 84c493d8e143360cfba3efede97e5a93d62c4d3d (diff) | |
download | linux-59f145d28ce853b13dafdfab438c48f3ead0b38e.tar.bz2 |
[MIPS] IP32: Fix sparse warnings.
Add __iomem qualifier to crime and mace pointers.
Signed-off-by: Arnaud Giersch <arnaud.giersch@free.fr>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/sgi-ip32/crime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/sgi-ip32/crime.c b/arch/mips/sgi-ip32/crime.c index 52cc6d994fd8..41b5eca1148c 100644 --- a/arch/mips/sgi-ip32/crime.c +++ b/arch/mips/sgi-ip32/crime.c @@ -19,8 +19,8 @@ #include <asm/ip32/crime.h> #include <asm/ip32/mace.h> -struct sgi_crime *crime; -struct sgi_mace *mace; +struct sgi_crime __iomem *crime; +struct sgi_mace __iomem *mace; EXPORT_SYMBOL_GPL(mace); |