aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@avionic-design.de>2012-09-17 07:22:53 -0400
committerBjorn Helgaas <bhelgaas@google.com>2012-09-18 19:22:25 -0400
commit3ddbebf878ac8d958bb34e87a742a6b3adc283a3 (patch)
tree6b398c32ec6b9f29e8daa0bc9c509ea5e17fba7e /arch/alpha
parent55d512e245bc7699a8800e23df1a24195dd08217 (diff)
PCI: Discard __init annotations for pci_fixup_irqs() and related functions
Remove the __init annotations in order to keep pci_fixup_irqs() around after init (e.g. for hotplug). This requires the same change for the implementation of pcibios_update_irq() on all architectures. While at it, all __devinit annotations are removed as well, since they will be useless now that HOTPLUG is always on. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/alpha')
-rw-r--r--arch/alpha/kernel/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/kernel/pci.c b/arch/alpha/kernel/pci.c
index 9816d5a4d176..920392f61ef2 100644
--- a/arch/alpha/kernel/pci.c
+++ b/arch/alpha/kernel/pci.c
@@ -256,7 +256,7 @@ pcibios_fixup_bus(struct pci_bus *bus)
256 } 256 }
257} 257}
258 258
259void __init 259void
260pcibios_update_irq(struct pci_dev *dev, int irq) 260pcibios_update_irq(struct pci_dev *dev, int irq)
261{ 261{
262 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq); 262 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);