Re: [PATCH] usb: xhci-dwc3: Fix support for dis_enblslpm_quirk

2024-03-04 Thread Marek Vasut

On 3/2/24 2:09 PM, Jonas Karlman wrote:

No device tree in U-Boot or linux use the wrong spelling used in code.

Use correct property name as defined in dwc3 bindings.

Fixes: 062790f46131 ("usb: xhci-dwc3: Add USB2 PHY configuration")
Signed-off-by: Jonas Karlman 


Reviewed-by: Marek Vasut 


[PATCH] usb: xhci-dwc3: Fix support for dis_enblslpm_quirk

2024-03-02 Thread Jonas Karlman
No device tree in U-Boot or linux use the wrong spelling used in code.

Use correct property name as defined in dwc3 bindings.

Fixes: 062790f46131 ("usb: xhci-dwc3: Add USB2 PHY configuration")
Signed-off-by: Jonas Karlman 
---
 drivers/usb/host/xhci-dwc3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/host/xhci-dwc3.c b/drivers/usb/host/xhci-dwc3.c
index 1dbd65dfaa34..6cebe1cc30cb 100644
--- a/drivers/usb/host/xhci-dwc3.c
+++ b/drivers/usb/host/xhci-dwc3.c
@@ -197,7 +197,7 @@ static int xhci_dwc3_probe(struct udevice *dev)
reg |= DWC3_GUSB2PHYCFG_USBTRDTIM_16BIT;
}
 
-   if (dev_read_bool(dev, "snps,dis_enblslpm-quirk"))
+   if (dev_read_bool(dev, "snps,dis_enblslpm_quirk"))
reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
 
if (dev_read_bool(dev, "snps,dis-u2-freeclk-exists-quirk"))
-- 
2.43.0