projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a35526
)
usb: gadget: Add bcdDevice for the DWC3 USB Gadget Controller
author
Jean-Jacques Hiblot
<jjhiblot@ti.com>
Thu, 9 Aug 2018 14:17:40 +0000
(16:17 +0200)
committer
Marek Vasut
<marex@denx.de>
Tue, 21 Aug 2018 14:21:37 +0000
(16:21 +0200)
Add an entry in usb_gadget_controller_number() for the DWC3 gadget
controller. Without it, it is not possible to bind the USB Ethernet driver.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
drivers/usb/gadget/gadget_chips.h
patch
|
blob
|
history
diff --git
a/drivers/usb/gadget/gadget_chips.h
b/drivers/usb/gadget/gadget_chips.h
index b9b081999a897a9b1d632d5a9cb917a53d68ef75..2c8f235d51c8769d759a0105fdf9df01dd197e75 100644
(file)
--- a/
drivers/usb/gadget/gadget_chips.h
+++ b/
drivers/usb/gadget/gadget_chips.h
@@
-206,5
+206,7
@@
static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
return 0x21;
else if (gadget_is_fotg210(gadget))
return 0x22;
+ else if (gadget_is_dwc3(gadget))
+ return 0x23;
return -ENOENT;
}