diff options
| author | André Draszik <[email protected]> | 2025-06-03 15:43:20 +0000 |
|---|---|---|
| committer | Krzysztof Kozlowski <[email protected]> | 2025-06-10 08:21:21 +0000 |
| commit | ca243e653f71d8c4724a68c9033923f945b1084d (patch) | |
| tree | b2f0a29cfad83945135540fcf6168be7b9e3b29f | |
| parent | clk: samsung: gs101: fix CLK_DOUT_CMU_G3D_BUSD (diff) | |
| download | kernel-ca243e653f71d8c4724a68c9033923f945b1084d.tar.gz kernel-ca243e653f71d8c4724a68c9033923f945b1084d.zip | |
clk: samsung: gs101: fix alternate mout_hsi0_usb20_ref parent clock
The alternate parent clock for this mux is mout_pll_usb, not the pll
itself.
Fixes: 1891e4d48755 ("clk: samsung: gs101: add support for cmu_hsi0")
Cc: [email protected]
Signed-off-by: André Draszik <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
| -rw-r--r-- | drivers/clk/samsung/clk-gs101.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/samsung/clk-gs101.c b/drivers/clk/samsung/clk-gs101.c index 12ee416375ef..70b26db9b95a 100644 --- a/drivers/clk/samsung/clk-gs101.c +++ b/drivers/clk/samsung/clk-gs101.c @@ -2129,7 +2129,7 @@ PNAME(mout_hsi0_usbdpdbg_user_p) = { "oscclk", "dout_cmu_hsi0_usbdpdbg" }; PNAME(mout_hsi0_bus_p) = { "mout_hsi0_bus_user", "mout_hsi0_alt_user" }; -PNAME(mout_hsi0_usb20_ref_p) = { "fout_usb_pll", +PNAME(mout_hsi0_usb20_ref_p) = { "mout_pll_usb", "mout_hsi0_tcxo_user" }; PNAME(mout_hsi0_usb31drd_p) = { "fout_usb_pll", "mout_hsi0_usb31drd_user", |
