git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
245847f
)
usb: host: dwc3-sti-glue: Use UCLASS_NOP instead of UCLASS_MISC
author
Patrice Chotard
<patrice.chotard@st.com>
Tue, 28 Apr 2020 11:49:50 +0000
(13:49 +0200)
committer
Marek Vasut
<marek.vasut+renesas@gmail.com>
Tue, 28 Apr 2020 11:52:52 +0000
(13:52 +0200)
dwc3-sti-glue has been broken since MISC uclass has been
modified to scan DT sub-nodes after bind.
Fixing it by a using the no-op uclass.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
drivers/usb/host/dwc3-sti-glue.c
patch
|
blob
|
history
diff --git
a/drivers/usb/host/dwc3-sti-glue.c
b/drivers/usb/host/dwc3-sti-glue.c
index
c99a198
..
99d4e29
100644
(file)
--- a/
drivers/usb/host/dwc3-sti-glue.c
+++ b/
drivers/usb/host/dwc3-sti-glue.c
@@
-239,7
+239,7
@@
static const struct udevice_id sti_dwc3_glue_ids[] = {
U_BOOT_DRIVER(dwc3_sti_glue) = {
.name = "dwc3_sti_glue",
- .id = UCLASS_
MISC
,
+ .id = UCLASS_
NOP
,
.of_match = sti_dwc3_glue_ids,
.ofdata_to_platdata = sti_dwc3_glue_ofdata_to_platdata,
.probe = sti_dwc3_glue_probe,