diff options
author | Felipe Balbi <balbi@ti.com> | 2011-04-07 10:59:34 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-13 16:34:53 -0700 |
commit | 4661ffc91befc8c5ee080720120da1d53851060a (patch) | |
tree | 35ed839c521e603b43266bb589951b7b594c95dc /drivers/Makefile | |
parent | 3ab810f19d71f4083be44b41770bcd784ff82e51 (diff) | |
download | linux-3.10-4661ffc91befc8c5ee080720120da1d53851060a.tar.gz linux-3.10-4661ffc91befc8c5ee080720120da1d53851060a.tar.bz2 linux-3.10-4661ffc91befc8c5ee080720120da1d53851060a.zip |
usb: don't enter usb subdirectories directly
Instead, make we enter usb/ directory on all
needed cases and enter the subdirectories from
drivers/usb/Makefile.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index ad67b7d4c27..0cf73a90fca 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -64,12 +64,10 @@ obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/ obj-$(CONFIG_PARIDE) += block/paride/ obj-$(CONFIG_TC) += tc/ obj-$(CONFIG_UWB) += uwb/ -obj-$(CONFIG_USB_OTG_UTILS) += usb/otg/ +obj-$(CONFIG_USB_OTG_UTILS) += usb/ obj-$(CONFIG_USB) += usb/ -obj-$(CONFIG_USB_MUSB_HDRC) += usb/musb/ -obj-$(CONFIG_USB_RENESAS_USBHS) += usb/renesas_usbhs/ obj-$(CONFIG_PCI) += usb/ -obj-$(CONFIG_USB_GADGET) += usb/gadget/ +obj-$(CONFIG_USB_GADGET) += usb/ obj-$(CONFIG_SERIO) += input/serio/ obj-$(CONFIG_GAMEPORT) += input/gameport/ obj-$(CONFIG_INPUT) += input/ |