Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: qcom: m31-eusb2: Fix the error log while enabling clock

While enabling clock, we incorrectly log 'ref clk' as 'cfg ahb clk'
Fix this since the devicetree bindings mentions it as ref clock.

Signed-off-by: Prashanth K <prashanth.k@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250826105254.3758803-1-prashanth.k@oss.qualcomm.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Prashanth K and committed by
Vinod Koul
616fe247 0c5375b0

+1 -1
+1 -1
drivers/phy/qualcomm/phy-qcom-m31-eusb2.c
··· 196 196 197 197 ret = clk_prepare_enable(phy->clk); 198 198 if (ret) { 199 - dev_err(&uphy->dev, "failed to enable cfg ahb clock, %d\n", ret); 199 + dev_err(&uphy->dev, "failed to enable ref clock, %d\n", ret); 200 200 goto disable_repeater; 201 201 } 202 202