Re: [PATCH v2 2/3] usb: dwc3: dwc3-generic-plat: add layerscape dwc3 support
From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Date: 2025-09-25 23:48:28
Also in:
linux-devicetree, linux-usb, lkml
From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Date: 2025-09-25 23:48:28
Also in:
linux-devicetree, linux-usb, lkml
On Thu, Sep 25, 2025, Thinh Nguyen wrote:
@@ -2206,7 +2211,7 @@ int dwc3_core_probe(const struct dwc3_probe_data *data) dwc3_get_properties(dwc); - dwc3_get_software_properties(dwc); + dwc3_get_software_properties(dwc, &data->properties); dwc->usb_psy = dwc3_get_usb_power_supply(dwc); if (IS_ERR(dwc->usb_psy))@@ -2356,6 +2361,7 @@ static int dwc3_probe(struct platform_device *pdev) probe_data.dwc = dwc; probe_data.res = res; + probe_data.properties.gsbuscfg0_reqinfo = DWC3_GSBUSCFG0_REQINFO_UNSPECIFIED;
Sent a bit early. The change above should've been this: probe_data.properties = DWC3_DEFAULT_PROPERTIES; BR, Thinh