diff options
author | Neil Zhang <zhangwm@marvell.com> | 2011-11-23 05:38:48 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-26 22:58:47 -0500 |
commit | ceb2560348d52c5fa21515e6c1c7d0245c7dd015 (patch) | |
tree | 2038f5d089168408f99f3ce0c64712fbea4961db /drivers/usb/Makefile | |
parent | c515598e0f5769916c31c00392cc2bfe6af74e55 (diff) |
USB: OTG should be linked before Host
For OTG controller, the host driver will call function
otg_get_transceiver to get the otg transceiver, so we need to init the
OTG driver before HOST.
Signed-off-by: Neil Zhang <zhangwm@marvell.com>
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/Makefile')
-rw-r--r-- | drivers/usb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index 75eca7645227..53a7bc07dd8d 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile | |||
@@ -6,6 +6,8 @@ | |||
6 | 6 | ||
7 | obj-$(CONFIG_USB) += core/ | 7 | obj-$(CONFIG_USB) += core/ |
8 | 8 | ||
9 | obj-$(CONFIG_USB_OTG_UTILS) += otg/ | ||
10 | |||
9 | obj-$(CONFIG_USB_DWC3) += dwc3/ | 11 | obj-$(CONFIG_USB_DWC3) += dwc3/ |
10 | 12 | ||
11 | obj-$(CONFIG_USB_MON) += mon/ | 13 | obj-$(CONFIG_USB_MON) += mon/ |
@@ -51,7 +53,6 @@ obj-$(CONFIG_USB_SPEEDTOUCH) += atm/ | |||
51 | 53 | ||
52 | obj-$(CONFIG_USB_MUSB_HDRC) += musb/ | 54 | obj-$(CONFIG_USB_MUSB_HDRC) += musb/ |
53 | obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs/ | 55 | obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs/ |
54 | obj-$(CONFIG_USB_OTG_UTILS) += otg/ | ||
55 | obj-$(CONFIG_USB_GADGET) += gadget/ | 56 | obj-$(CONFIG_USB_GADGET) += gadget/ |
56 | 57 | ||
57 | obj-$(CONFIG_USB_COMMON) += usb-common.o | 58 | obj-$(CONFIG_USB_COMMON) += usb-common.o |