diff options
Diffstat (limited to 'arch/mips/pci/fixup-capcella.c')
| -rw-r--r-- | arch/mips/pci/fixup-capcella.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/mips/pci/fixup-capcella.c b/arch/mips/pci/fixup-capcella.c index 1c02f5737367..b4c263f16b15 100644 --- a/arch/mips/pci/fixup-capcella.c +++ b/arch/mips/pci/fixup-capcella.c @@ -32,13 +32,13 @@  #define INTC	PC104PLUS_INTC_IRQ  #define INTD	PC104PLUS_INTD_IRQ -static char irq_tab_capcella[][5] __initdata = { +static char irq_tab_capcella[][5] = {   [11] = { -1, INT1, INT1, INT1, INT1 },   [12] = { -1, INT2, INT2, INT2, INT2 },   [14] = { -1, INTA, INTB, INTC, INTD }  }; -int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) +int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)  {  	return irq_tab_capcella[slot][pin];  } |