diff options
Diffstat (limited to 'arch/powerpc/kernel/io-workarounds.c')
| -rw-r--r-- | arch/powerpc/kernel/io-workarounds.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/powerpc/kernel/io-workarounds.c b/arch/powerpc/kernel/io-workarounds.c index 12d329bcbb9..50e90b7e713 100644 --- a/arch/powerpc/kernel/io-workarounds.c +++ b/arch/powerpc/kernel/io-workarounds.c @@ -118,7 +118,7 @@ static void iowa_##name at					\  #undef DEF_PCI_AC_RET  #undef DEF_PCI_AC_NORET -static const struct ppc_pci_io __devinitconst iowa_pci_io = { +static const struct ppc_pci_io iowa_pci_io = {  #define DEF_PCI_AC_RET(name, ret, at, al, space, aa)	.name = iowa_##name,  #define DEF_PCI_AC_NORET(name, at, al, space, aa)	.name = iowa_##name, @@ -146,7 +146,7 @@ static void __iomem *iowa_ioremap(phys_addr_t addr, unsigned long size,  }  /* Enable IO workaround */ -static void __devinit io_workaround_init(void) +static void io_workaround_init(void)  {  	static int io_workaround_inited; @@ -158,9 +158,8 @@ static void __devinit io_workaround_init(void)  }  /* Register new bus to support workaround */ -void __devinit iowa_register_bus(struct pci_controller *phb, -			struct ppc_pci_io *ops, -			int (*initfunc)(struct iowa_bus *, void *), void *data) +void iowa_register_bus(struct pci_controller *phb, struct ppc_pci_io *ops, +		       int (*initfunc)(struct iowa_bus *, void *), void *data)  {  	struct iowa_bus *bus;  	struct device_node *np = phb->dn;  |