diff options
author | Felipe Balbi <balbi@ti.com> | 2011-10-12 07:15:10 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-12-12 04:48:13 -0500 |
commit | 67920bd7c984c7f3a73305ad11cbb9fd3d5e239c (patch) | |
tree | f8400e00649f8d69884a1c2a9e436255597e9596 /drivers/usb/dwc3 | |
parent | d07e8819a03dc2d1f03f725194ae56544e6c680b (diff) |
usb: dwc3: always compile gadget side too
We can decide in runtime if that will be used
or not.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/Kconfig | 2 | ||||
-rw-r--r-- | drivers/usb/dwc3/Makefile | 6 | ||||
-rw-r--r-- | drivers/usb/dwc3/gadget.h | 10 |
3 files changed, 3 insertions, 15 deletions
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index 2c05ec9cf352..dca0b51435e9 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig | |||
@@ -2,6 +2,8 @@ config USB_DWC3 | |||
2 | tristate "DesignWare USB3 DRD Core Support" | 2 | tristate "DesignWare USB3 DRD Core Support" |
3 | depends on (USB || USB_GADGET) | 3 | depends on (USB || USB_GADGET) |
4 | select USB_OTG_UTILS | 4 | select USB_OTG_UTILS |
5 | select USB_GADGET_DUALSPEED | ||
6 | select USB_GADGET_SUPERSPEED | ||
5 | select USB_XHCI_PLATFORM | 7 | select USB_XHCI_PLATFORM |
6 | help | 8 | help |
7 | Say Y or M here if your system has a Dual Role SuperSpeed | 9 | Say Y or M here if your system has a Dual Role SuperSpeed |
diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile index 0926e71142b9..900ae74357f1 100644 --- a/drivers/usb/dwc3/Makefile +++ b/drivers/usb/dwc3/Makefile | |||
@@ -5,11 +5,7 @@ obj-$(CONFIG_USB_DWC3) += dwc3.o | |||
5 | 5 | ||
6 | dwc3-y := core.o | 6 | dwc3-y := core.o |
7 | dwc3-y += host.o | 7 | dwc3-y += host.o |
8 | 8 | dwc3-y += gadget.o ep0.o | |
9 | ifneq ($(CONFIG_USB_GADGET_DWC3),) | ||
10 | dwc3-y += gadget.o ep0.o | ||
11 | endif | ||
12 | |||
13 | 9 | ||
14 | ifneq ($(CONFIG_DEBUG_FS),) | 10 | ifneq ($(CONFIG_DEBUG_FS),) |
15 | dwc3-y += debugfs.o | 11 | dwc3-y += debugfs.o |
diff --git a/drivers/usb/dwc3/gadget.h b/drivers/usb/dwc3/gadget.h index 71145a449d99..6dec6d94e547 100644 --- a/drivers/usb/dwc3/gadget.h +++ b/drivers/usb/dwc3/gadget.h | |||
@@ -110,18 +110,8 @@ static inline void dwc3_gadget_move_request_queued(struct dwc3_request *req) | |||
110 | list_move_tail(&req->list, &dep->req_queued); | 110 | list_move_tail(&req->list, &dep->req_queued); |
111 | } | 111 | } |
112 | 112 | ||
113 | #if defined(CONFIG_USB_GADGET_DWC3) || defined(CONFIG_USB_GADGET_DWC3_MODULE) | ||
114 | int dwc3_gadget_init(struct dwc3 *dwc); | 113 | int dwc3_gadget_init(struct dwc3 *dwc); |
115 | void dwc3_gadget_exit(struct dwc3 *dwc); | 114 | void dwc3_gadget_exit(struct dwc3 *dwc); |
116 | #else | ||
117 | static inline int dwc3_gadget_init(struct dwc3 *dwc) { return 0; } | ||
118 | static inline void dwc3_gadget_exit(struct dwc3 *dwc) { } | ||
119 | static inline int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep, | ||
120 | unsigned cmd, struct dwc3_gadget_ep_cmd_params *params) | ||
121 | { | ||
122 | return 0; | ||
123 | } | ||
124 | #endif | ||
125 | 115 | ||
126 | void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, | 116 | void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, |
127 | int status); | 117 | int status); |