summaryrefslogtreecommitdiffstats
path: root/arch/mips/mti-malta/malta-pci.c
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior2012-07-19 07:13:54 +0200
committerRalf Baechle2012-07-19 11:27:23 +0200
commit85a053fa5f2d67ae5b2968305b16e8d2fe4cdf4d (patch)
treecb7102b0b6270856a4b0ca57eccc30441a981086 /arch/mips/mti-malta/malta-pci.c
parentMIPS: Fix bug.h MIPS build regression (diff)
downloadkernel-qcow2-linux-85a053fa5f2d67ae5b2968305b16e8d2fe4cdf4d.tar.gz
kernel-qcow2-linux-85a053fa5f2d67ae5b2968305b16e8d2fe4cdf4d.tar.xz
kernel-qcow2-linux-85a053fa5f2d67ae5b2968305b16e8d2fe4cdf4d.zip
MIPS: PCI: Move fixups from __init to __devinit.
Fixups are executed once the pci-device is found which is during boot process so __init seems fine as long as the platform does not support hotplug. However it is possible to remove the PCI bus at run time and have it rediscovered again via "echo 1 > /sys/bus/pci/rescan" and this will call the fixups again. [ralf@linux-mips.org: Made piixirqmap[] in malta_piix_func0_fixup() __initdata.] Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Cc: linux-mips@linux-mips.org Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mti-malta/malta-pci.c')
-rw-r--r--arch/mips/mti-malta/malta-pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mti-malta/malta-pci.c b/arch/mips/mti-malta/malta-pci.c
index 916206823d45..284dea54faf5 100644
--- a/arch/mips/mti-malta/malta-pci.c
+++ b/arch/mips/mti-malta/malta-pci.c
@@ -254,7 +254,7 @@ void __init mips_pcibios_init(void)
}
/* Enable PCI 2.1 compatibility in PIIX4 */
-static void __init quirk_dlcsetup(struct pci_dev *dev)
+static void __devinit quirk_dlcsetup(struct pci_dev *dev)
{
u8 odlc, ndlc;
(void) pci_read_config_byte(dev, 0x82, &odlc);