From: David S. Miller Date: Fri, 4 Nov 2005 19:17:24 +0000 (-0800) Subject: [USB]: Make early handoff a final fixup instead of a header one. X-Git-Tag: v2.6.15-rc1~452^2~22 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=462aae65f6ea41de05ebc2a54a9e6b95563591f3;p=~emulex%2Finfiniband.git [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 --- diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c index b1aa350fd32..e46528c825b 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) else if (pdev->class == PCI_CLASS_SERIAL_USB_EHCI) quirk_usb_disable_ehci(pdev); } -DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, quirk_usb_early_handoff); +DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, quirk_usb_early_handoff);