df6c516900
Move the dbgp early printk driver in advance of refactoring and adding new code, so the changes to this code are tracked separately from the move of the code. The drivers/usb/early directory will be the location of the current and future early usb code for driving usb devices prior initializing the standard interrupt driven USB drivers. Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Yinghai Lu <yinghai@kernel.org> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
46 lines
1.1 KiB
Makefile
46 lines
1.1 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_FHCI_HCD) += host/
|
|
obj-$(CONFIG_USB_XHCI_HCD) += host/
|
|
obj-$(CONFIG_USB_SL811_HCD) += host/
|
|
obj-$(CONFIG_USB_ISP1362_HCD) += host/
|
|
obj-$(CONFIG_USB_U132_HCD) += host/
|
|
obj-$(CONFIG_USB_R8A66597_HCD) += host/
|
|
obj-$(CONFIG_USB_HWA_HCD) += host/
|
|
obj-$(CONFIG_USB_ISP1760_HCD) += host/
|
|
|
|
obj-$(CONFIG_USB_C67X00_HCD) += c67x00/
|
|
|
|
obj-$(CONFIG_USB_WUSB) += wusbcore/
|
|
|
|
obj-$(CONFIG_USB_ACM) += class/
|
|
obj-$(CONFIG_USB_PRINTER) += class/
|
|
obj-$(CONFIG_USB_WDM) += class/
|
|
obj-$(CONFIG_USB_TMC) += 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) += misc/
|
|
obj-y += early/
|
|
|
|
obj-$(CONFIG_USB_ATM) += atm/
|
|
obj-$(CONFIG_USB_SPEEDTOUCH) += atm/
|