CONFIG_USB is only for the host side, if we want to build a device-only kernel and our gadget Makefile is dependent on drivers/usb/Makefile we won't be able to have the driver unless we enable host side support. Fix it. Signed-off-by: Felipe Balbi <balbi@xxxxxx> --- drivers/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/Makefile b/drivers/Makefile index 3f135b6..b8efc07 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -65,7 +65,7 @@ obj-$(CONFIG_PARIDE) += block/paride/ obj-$(CONFIG_TC) += tc/ obj-$(CONFIG_UWB) += uwb/ obj-$(CONFIG_USB_OTG_UTILS) += usb/otg/ -obj-$(CONFIG_USB) += usb/ +obj-y += usb/ obj-$(CONFIG_USB_MUSB_HDRC) += usb/musb/ obj-$(CONFIG_PCI) += usb/ obj-$(CONFIG_USB_GADGET) += usb/gadget/ -- 1.7.4.1.343.ga91df -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html