diff options
author | Tom Rini <trini@konsulko.com> | 2019-10-25 13:50:51 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-10-25 13:50:51 -0400 |
commit | 271103ac0b8ff627007f83d379927b60bcccb702 (patch) | |
tree | 8c6d4edd7976ba7170df364746240e6e37ed76b9 /drivers/usb/dwc3/core.h | |
parent | c9e50bb12af19a8365ae4d3099abb8db1abee785 (diff) | |
parent | 235f5e158e336371759f98ffbf265fe078cda251 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-usb
- DWC3 improvements
- i.MX7 EHCI bugfix
Diffstat (limited to 'drivers/usb/dwc3/core.h')
-rw-r--r-- | drivers/usb/dwc3/core.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h index cfe29884e7..be9672266a 100644 --- a/drivers/usb/dwc3/core.h +++ b/drivers/usb/dwc3/core.h @@ -991,18 +991,14 @@ struct dwc3_gadget_ep_cmd_params { /* prototypes */ int dwc3_gadget_resize_tx_fifos(struct dwc3 *dwc); +void dwc3_of_parse(struct dwc3 *dwc); int dwc3_init(struct dwc3 *dwc); void dwc3_remove(struct dwc3 *dwc); -#ifdef CONFIG_USB_DWC3_HOST -int dwc3_host_init(struct dwc3 *dwc); -void dwc3_host_exit(struct dwc3 *dwc); -#else static inline int dwc3_host_init(struct dwc3 *dwc) { return 0; } static inline void dwc3_host_exit(struct dwc3 *dwc) { } -#endif #ifdef CONFIG_USB_DWC3_GADGET int dwc3_gadget_init(struct dwc3 *dwc); |