summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Eichenberger <stefan.eichenberger@toradex.com>2023-06-07 10:07:40 +0200
committerStefan Eichenberger <eichest@gmail.com>2023-06-07 10:31:13 +0200
commite6282b64a8347281312635c9b9145eea44ef14cb (patch)
tree267c40fc44e8ed23b2121551165182cfa2b7a81c
parent3592e06b1bda505d04689493e092726550fed3b4 (diff)
usb: dwc3: imx8mp: fix bus_early device tree property name
When adding the bus_early device tree property, bus_early_clk was incorrectly used as name. This commit changes the property name to bus_early, which is consistent with the other clocks. Upstream-Status: Inappropriate [other] This fix is only needed for the downstream kernel. In the upstream kernel they added a power-domain for all hsio devices (usb, pcie, etc.) and enable the clock there. However, backporting this solution would probably cause more issues for now. Fixes: 4d948676c55f("usb: dwc3: imx8mp: add bus_early_clk") Signed-off-by: Stefan Eichenberger <stefan.eichenberger@toradex.com>
-rw-r--r--drivers/usb/dwc3/dwc3-imx8mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-imx8mp.c b/drivers/usb/dwc3/dwc3-imx8mp.c
index 1b3097eb0aed..7be67e777dfa 100644
--- a/drivers/usb/dwc3/dwc3-imx8mp.c
+++ b/drivers/usb/dwc3/dwc3-imx8mp.c
@@ -221,7 +221,7 @@ static int dwc3_imx8mp_probe(struct platform_device *pdev)
request_bus_freq(BUS_FREQ_HIGH);
- dwc3_imx->bus_early_clk = devm_clk_get(dev, "bus_early_clk");
+ dwc3_imx->bus_early_clk = devm_clk_get(dev, "bus_early");
if (IS_ERR(dwc3_imx->bus_early_clk)) {
err = PTR_ERR(dwc3_imx->bus_early_clk);
dev_err(dev, "Failed to get bus_early_clk clk, err=%d\n", err);