diff options
author | David S. Miller <davem@davemloft.net> | 2005-11-04 14:17:24 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-11-04 14:17:24 -0500 |
commit | 462aae65f6ea41de05ebc2a54a9e6b95563591f3 (patch) | |
tree | 04c661d71405026ec6f8a47bc965038636f79b52 /drivers/usb/host | |
parent | 889dfafe836ac9bb711f73d07a4c044cae177c0b (diff) |
[USB]: Make early handoff a final fixup instead of a header one.
At header fixup time, it is not yet legal to ioremap() PCI
device registers, yet that is what this quirk code needs to
do.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/pci-quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c index b1aa350fd32f..e46528c825bf 100644 --- a/drivers/usb/host/pci-quirks.c +++ b/drivers/usb/host/pci-quirks.c | |||
@@ -316,4 +316,4 @@ static void __devinit quirk_usb_early_handoff(struct pci_dev *pdev) | |||
316 | else if (pdev->class == PCI_CLASS_SERIAL_USB_EHCI) | 316 | else if (pdev->class == PCI_CLASS_SERIAL_USB_EHCI) |
317 | quirk_usb_disable_ehci(pdev); | 317 | quirk_usb_disable_ehci(pdev); |
318 | } | 318 | } |
319 | DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, quirk_usb_early_handoff); | 319 | DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, quirk_usb_early_handoff); |