diff options
author | Felipe Balbi <balbi@ti.com> | 2011-10-12 07:08:26 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-12-12 04:48:12 -0500 |
commit | d07e8819a03dc2d1f03f725194ae56544e6c680b (patch) | |
tree | 0715634a05d360ef7939fd0c23befaf11c40919a /drivers/usb/dwc3/Makefile | |
parent | 0949e99b05736946cf0ac78e37194be0807e497e (diff) |
usb: dwc3: add xHCI Host support
The Designware USB3 IP can be configured with
an internal xHCI. If we're running on such a
version, let's start the xHCI stack.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3/Makefile')
-rw-r--r-- | drivers/usb/dwc3/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile index 593d1dbc465b..0926e71142b9 100644 --- a/drivers/usb/dwc3/Makefile +++ b/drivers/usb/dwc3/Makefile | |||
@@ -4,11 +4,13 @@ ccflags-$(CONFIG_USB_DWC3_VERBOSE) += -DVERBOSE_DEBUG | |||
4 | obj-$(CONFIG_USB_DWC3) += dwc3.o | 4 | obj-$(CONFIG_USB_DWC3) += dwc3.o |
5 | 5 | ||
6 | dwc3-y := core.o | 6 | dwc3-y := core.o |
7 | dwc3-y += host.o | ||
7 | 8 | ||
8 | ifneq ($(CONFIG_USB_GADGET_DWC3),) | 9 | ifneq ($(CONFIG_USB_GADGET_DWC3),) |
9 | dwc3-y += gadget.o ep0.o | 10 | dwc3-y += gadget.o ep0.o |
10 | endif | 11 | endif |
11 | 12 | ||
13 | |||
12 | ifneq ($(CONFIG_DEBUG_FS),) | 14 | ifneq ($(CONFIG_DEBUG_FS),) |
13 | dwc3-y += debugfs.o | 15 | dwc3-y += debugfs.o |
14 | endif | 16 | endif |