summaryrefslogtreecommitdiffstats
path: root/drivers/usb/Makefile
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-07-29 11:54:20 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-08-02 15:16:31 +0200
commit6f354bc067482fbe78e9148c3a1501188b18f22d (patch)
tree7b6507b4576a4e88a4511d45801c7ebb92222089 /drivers/usb/Makefile
parent404e6d553a060d8abe483163396b196909ba89fe (diff)
downloadbarebox-6f354bc067482fbe78e9148c3a1501188b18f22d.tar.gz
barebox-6f354bc067482fbe78e9148c3a1501188b18f22d.tar.xz
drivers/usb: regorganisation
move to linux usb driver organisation as following drivers/usb/core drivers/usb/gadget drivers/usb/host drivers/usb/otg Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/usb/Makefile')
-rw-r--r--drivers/usb/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile
index 57d0bed862..e6f683bb29 100644
--- a/drivers/usb/Makefile
+++ b/drivers/usb/Makefile
@@ -1,6 +1,5 @@
-obj-$(CONFIG_USB) += usb.o
-obj-$(CONFIG_USB_EHCI) += usb_ehci_core.o
-obj-$(CONFIG_USB_ULPI) += ulpi.o
-obj-$(CONFIG_USB_ISP1504) += isp1504.o
+obj-$(CONFIG_USB) += core/
obj-$(CONFIG_USB_GADGET) += gadget/
+obj-y += host/
+obj-y += otg/