Skip to content

Commit 6015d2c

Browse files
author
Linus Torvalds
committed
Link USB drivers later in the kernel
We want to link the "regular" SCSI drivers before the USB storage driver, since historically we've always detected internal SCSI disks before the external USB storage modules. The link order matters for initcall ordering, and this got broken by mistake by commit 7586269 which moved the USB host controller PCI quirk handling around. Signed-off-by: Linus Torvalds <[email protected]>
1 parent e3c3374 commit 6015d2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Rewritten to use lists instead of if-statements.
66
#
77

8-
obj-$(CONFIG_PCI) += pci/ usb/
8+
obj-$(CONFIG_PCI) += pci/
99
obj-$(CONFIG_PARISC) += parisc/
1010
obj-$(CONFIG_RAPIDIO) += rapidio/
1111
obj-y += video/
@@ -49,6 +49,7 @@ obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
4949
obj-$(CONFIG_PARIDE) += block/paride/
5050
obj-$(CONFIG_TC) += tc/
5151
obj-$(CONFIG_USB) += usb/
52+
obj-$(CONFIG_PCI) += usb/
5253
obj-$(CONFIG_USB_GADGET) += usb/gadget/
5354
obj-$(CONFIG_GAMEPORT) += input/gameport/
5455
obj-$(CONFIG_INPUT) += input/

0 commit comments

Comments
 (0)