[PATCH] fix iomem annotations in sparc32 pcic code
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
7116317dc9
commit
f8ad23a401
|
@ -161,7 +161,7 @@ static struct pcic_sn2list pcic_known_sysnames[] = {
|
|||
static int pcic0_up;
|
||||
static struct linux_pcic pcic0;
|
||||
|
||||
void * __iomem pcic_regs;
|
||||
void __iomem *pcic_regs;
|
||||
volatile int pcic_speculative;
|
||||
volatile int pcic_trapped;
|
||||
|
||||
|
|
|
@ -16,10 +16,10 @@
|
|||
#include <asm/pbm.h>
|
||||
|
||||
struct linux_pcic {
|
||||
void * __iomem pcic_regs;
|
||||
void __iomem *pcic_regs;
|
||||
unsigned long pcic_io;
|
||||
void * __iomem pcic_config_space_addr;
|
||||
void * __iomem pcic_config_space_data;
|
||||
void __iomem *pcic_config_space_addr;
|
||||
void __iomem *pcic_config_space_data;
|
||||
struct resource pcic_res_regs;
|
||||
struct resource pcic_res_io;
|
||||
struct resource pcic_res_cfg_addr;
|
||||
|
|
Loading…
Reference in New Issue