Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59f145d2 authored by Arnaud Giersch's avatar Arnaud Giersch Committed by Ralf Baechle
Browse files

[MIPS] IP32: Fix sparse warnings.


    
Add __iomem qualifier to crime and mace pointers.
    
Signed-off-by: default avatarArnaud Giersch <arnaud.giersch@free.fr>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 84c493d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);

+1 −1
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ struct sgi_crime {
#define CRIME_MEM_ERROR_ECC_REPL_MASK	0xffffffff
};

extern struct sgi_crime *crime;
extern struct sgi_crime __iomem *crime;

#define CRIME_HI_MEM_BASE	0x40000000	/* this is where whole 1G of RAM is mapped */

+1 −1
Original line number Diff line number Diff line
@@ -363,6 +363,6 @@ struct sgi_mace {
	char _pad6[0x80000 - sizeof(struct mace_isa)];
};

extern struct sgi_mace *mace;
extern struct sgi_mace __iomem *mace;

#endif /* __ASM_MACE_H__ */