5b2fc49991
It is preferable to group drivers by usage (net, scsi, ATA, ...) than by bus. When reviewing drivers, the [PCI|USB|PCMCIA|...] maintainer is probably less qualified on networking issues than a networking maintainer. Also, from a practical standpoint, chips often appear on multiple buses, which is why we do not put drivers into drivers/pci/net. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Jeff Garzik <jeff@garzik.org>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
#
|
|
# Makefile for the kernel USB device drivers.
|
|
#
|
|
|
|
# Object files in subdirectories
|
|
|
|
obj-$(CONFIG_USB) += core/
|
|
|
|
obj-$(CONFIG_USB_MON) += mon/
|
|
|
|
obj-$(CONFIG_PCI) += host/
|
|
obj-$(CONFIG_USB_EHCI_HCD) += host/
|
|
obj-$(CONFIG_USB_ISP116X_HCD) += host/
|
|
obj-$(CONFIG_USB_OHCI_HCD) += host/
|
|
obj-$(CONFIG_USB_UHCI_HCD) += host/
|
|
obj-$(CONFIG_USB_SL811_HCD) += host/
|
|
obj-$(CONFIG_USB_U132_HCD) += host/
|
|
obj-$(CONFIG_USB_OHCI_AT91) += host/
|
|
|
|
obj-$(CONFIG_USB_ACM) += class/
|
|
obj-$(CONFIG_USB_PRINTER) += class/
|
|
|
|
obj-$(CONFIG_USB_STORAGE) += storage/
|
|
obj-$(CONFIG_USB) += storage/
|
|
|
|
obj-$(CONFIG_USB_MDC800) += image/
|
|
obj-$(CONFIG_USB_MICROTEK) += image/
|
|
|
|
obj-$(CONFIG_USB_SERIAL) += serial/
|
|
|
|
obj-$(CONFIG_USB_ADUTUX) += misc/
|
|
obj-$(CONFIG_USB_APPLEDISPLAY) += misc/
|
|
obj-$(CONFIG_USB_AUERSWALD) += misc/
|
|
obj-$(CONFIG_USB_BERRY_CHARGE) += misc/
|
|
obj-$(CONFIG_USB_CYPRESS_CY7C63)+= misc/
|
|
obj-$(CONFIG_USB_CYTHERM) += misc/
|
|
obj-$(CONFIG_USB_EMI26) += misc/
|
|
obj-$(CONFIG_USB_EMI62) += misc/
|
|
obj-$(CONFIG_USB_FTDI_ELAN) += misc/
|
|
obj-$(CONFIG_USB_IDMOUSE) += misc/
|
|
obj-$(CONFIG_USB_LCD) += misc/
|
|
obj-$(CONFIG_USB_LD) += misc/
|
|
obj-$(CONFIG_USB_LED) += misc/
|
|
obj-$(CONFIG_USB_LEGOTOWER) += misc/
|
|
obj-$(CONFIG_USB_PHIDGETSERVO) += misc/
|
|
obj-$(CONFIG_USB_RIO500) += misc/
|
|
obj-$(CONFIG_USB_SISUSBVGA) += misc/
|
|
obj-$(CONFIG_USB_TEST) += misc/
|
|
obj-$(CONFIG_USB_TRANCEVIBRATOR)+= misc/
|
|
obj-$(CONFIG_USB_USS720) += misc/
|
|
|
|
obj-$(CONFIG_USB_ATM) += atm/
|
|
obj-$(CONFIG_USB_SPEEDTOUCH) += atm/
|