diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2009-10-12 07:50:34 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-10-12 09:42:06 -0400 |
commit | 00010268842bda320d43159324651c330e1e8136 (patch) | |
tree | 97a9cb7187c2b1594c859816f793e0d8a0f9990e /drivers/pci | |
parent | 8d86fb2c80ec376b35ae64ac858d406ae1d42a3f (diff) |
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) | |||
2573 | pci_do_fixups(dev, start, end); | 2573 | pci_do_fixups(dev, start, end); |
2574 | } | 2574 | } |
2575 | 2575 | ||
2576 | static int __devinit pci_apply_final_quirks(void) | 2576 | static int __init pci_apply_final_quirks(void) |
2577 | { | 2577 | { |
2578 | struct pci_dev *dev = NULL; | 2578 | struct pci_dev *dev = NULL; |
2579 | 2579 | ||