diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2009-10-12 12:50:34 +0100 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-10-12 14:42:06 +0100 |
commit | 00010268842bda320d43159324651c330e1e8136 (patch) | |
tree | 97a9cb7187c2b1594c859816f793e0d8a0f9990e /drivers/pci | |
parent | 8d86fb2c80ec376b35ae64ac858d406ae1d42a3f (diff) | |
download | linux-00010268842bda320d43159324651c330e1e8136.tar.gz linux-00010268842bda320d43159324651c330e1e8136.tar.bz2 linux-00010268842bda320d43159324651c330e1e8136.zip |
Mark pci_apply_final_quirks() __init rather than __devinit
It doesn't get invoked on hotplug; it can be thrown away after init.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 014227540ac9..77bf620ba218 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -2573,7 +2573,7 @@ void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev) pci_do_fixups(dev, start, end); } -static int __devinit pci_apply_final_quirks(void) +static int __init pci_apply_final_quirks(void) { struct pci_dev *dev = NULL; |