UPSTREAM: usb: dwc3: Use UCLASS_NOP instead of UCLASS_MISC for the DWC3 generic glue
dwc3-generic 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. Change-Id: Id95c49a16951cbe8bc7e58d8a3f85a7372ffd00a Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Frank Wang <frank.wang@rock-chips.com> (cherry picked from commit 3b83829ed63fabe460592395571c1d8fd9b861c8)
This commit is contained in:
parent
8fff75ba3b
commit
f44c88f169
|
|
@ -350,7 +350,7 @@ static const struct udevice_id dwc3_glue_ids[] = {
|
|||
|
||||
U_BOOT_DRIVER(dwc3_generic_wrapper) = {
|
||||
.name = "dwc3-generic-wrapper",
|
||||
.id = UCLASS_MISC,
|
||||
.id = UCLASS_NOP,
|
||||
.of_match = dwc3_glue_ids,
|
||||
.bind = dwc3_glue_bind,
|
||||
.probe = dwc3_glue_probe,
|
||||
|
|
|
|||
Loading…
Reference in New Issue