Skip to content

Commit

Permalink
usb: phy: msm: Remove HSUSB prefix from regulator names
Browse files Browse the repository at this point in the history
Prefix did not bring any useful information. Currently none
of the MSM platforms define these regulators, so it is safe
to rename them.

Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Ivan T. Ivanov authored and Felipe Balbi committed Apr 30, 2014
1 parent ff0e4a6 commit f5ef237
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/usb/phy/phy-msm-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1418,9 +1418,9 @@ static int msm_otg_probe(struct platform_device *pdev)
return motg->irq;
}

regs[0].supply = "HSUSB_VDDCX";
regs[1].supply = "HSUSB_3p3";
regs[2].supply = "HSUSB_1p8";
regs[0].supply = "vddcx";
regs[1].supply = "v3p3";
regs[2].supply = "v1p8";

ret = devm_regulator_bulk_get(motg->phy.dev, ARRAY_SIZE(regs), regs);
if (ret)
Expand Down

0 comments on commit f5ef237

Please sign in to comment.