Skip to content

Commit 90f7af4

Browse files
quic-varadavinodkoul
authored andcommitted
phy: qcom: m31: Fix indentation issues
Fix incorrect indentation Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com> Link: https://lore.kernel.org/r/7ca6fa68ba33742fcf65147c038c1102cc4901b4.1693468292.git.quic_varada@quicinc.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent 0bb80ec commit 90f7af4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/phy/qualcomm/phy-qcom-m31.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ static int m31usb_phy_probe(struct platform_device *pdev)
242242
qphy->clk = devm_clk_get(dev, NULL);
243243
if (IS_ERR(qphy->clk))
244244
return dev_err_probe(dev, PTR_ERR(qphy->clk),
245-
"failed to get clk\n");
245+
"failed to get clk\n");
246246

247247
data = of_device_get_match_data(dev);
248248
qphy->regs = data->regs;
@@ -252,12 +252,12 @@ static int m31usb_phy_probe(struct platform_device *pdev)
252252
qphy->phy = devm_phy_create(dev, NULL, &m31usb_phy_gen_ops);
253253
if (IS_ERR(qphy->phy))
254254
return dev_err_probe(dev, PTR_ERR(qphy->phy),
255-
"failed to create phy\n");
255+
"failed to create phy\n");
256256

257257
qphy->vreg = devm_regulator_get(dev, "vdda-phy");
258258
if (IS_ERR(qphy->vreg))
259259
return dev_err_probe(dev, PTR_ERR(qphy->phy),
260-
"failed to get vreg\n");
260+
"failed to get vreg\n");
261261

262262
phy_set_drvdata(qphy->phy, qphy);
263263

0 commit comments

Comments
 (0)