Skip to content

Commit

Permalink
remove regulator_enable from dwc3 suspend & resume for rvbook
Browse files Browse the repository at this point in the history
  • Loading branch information
ann-yanan authored and RevySR committed Jul 20, 2024
1 parent 2a1c09c commit f6b3a51
Showing 1 changed file with 1 addition and 58 deletions.
59 changes: 1 addition & 58 deletions drivers/usb/dwc3/dwc3-thead.c
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -259,76 +259,19 @@ static int dwc3_thead_remove(struct platform_device *pdev)
static int dwc3_thead_pm_suspend(struct device *dev)
{
struct dwc3_thead *thead = dev_get_drvdata(dev);
int ret;

dwc3_thead_assert(thead);

if (!IS_ERR(thead->hub1v2)) {
ret = regulator_disable(thead->hub1v2);
if (ret) {
dev_err(dev, "failed to disable regulator hub1v2 %d\n", ret);
}
}

if (!IS_ERR(thead->hub5v)) {
ret = regulator_disable(thead->hub5v);
if (ret) {
dev_err(dev, "failed to disable regulator hub1v2 %d\n", ret);
}
}

clk_bulk_disable(thead->num_clocks, thead->clks);
ret = regulator_disable(thead->vbus);
if (ret) {
dev_err(dev, "failed to disable regulator vbus %d\n", ret);
}
ret = regulator_disable(thead->hub1v2);
if (ret) {
dev_err(dev, "failed to disable regulator hub1v2 %d\n", ret);
}
ret = regulator_disable(thead->hub5v);

if (ret) {
dev_err(dev, "failed to disable regulator hub1v2 %d\n", ret);
}

return ret;
return 0;
}


static int dwc3_thead_pm_resume(struct device *dev)
{
struct dwc3_thead *thead = dev_get_drvdata(dev);
int ret;
dev_info(dev,"%s\n",__func__);
ret = regulator_enable(thead->vbus);
if (ret) {
dev_err(dev, "failed to enable regulator vbus %d\n", ret);
}
ret = regulator_enable(thead->hub1v2);
if (ret) {
dev_err(dev, "failed to enable regulator hub1v2 %d\n", ret);
}
ret = regulator_enable(thead->hub5v);

if (ret) {
dev_err(dev, "failed to enable regulator hub1v2 %d\n", ret);
}

/* enable regulator here for some extend regulator does not have pm func */
if (!IS_ERR(thead->hub1v2)) {
ret = regulator_enable(thead->hub1v2);
if (ret) {
dev_err(dev, "failed to enable regulator hub1v2 %d\n", ret);
}
}

if (!IS_ERR(thead->hub5v)) {
ret = regulator_enable(thead->hub5v);
if (ret) {
dev_err(dev, "failed to enable regulator hub1v2 %d\n", ret);
}
}

ret = clk_bulk_prepare_enable(thead->num_clocks, thead->clks);
if (ret) {
Expand Down

0 comments on commit f6b3a51

Please sign in to comment.