Skip to content

Commit

Permalink
phy: sun4i-usb: Fix not calling dev_err with a device
Browse files Browse the repository at this point in the history
This uses phy's device

Signed-off-by: Sean Anderson <[email protected]>
Tested-by: Patrick Delaunay <[email protected]>
  • Loading branch information
Forty-Bot authored and trini committed Sep 30, 2020
1 parent e9e1bd1 commit 7334517
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions drivers/phy/allwinner/phy-sun4i-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,13 +272,15 @@ static int sun4i_usb_phy_init(struct phy *phy)

ret = clk_enable(&usb_phy->clocks);
if (ret) {
dev_err(dev, "failed to enable usb_%ldphy clock\n", phy->id);
dev_err(phy->dev, "failed to enable usb_%ldphy clock\n",
phy->id);
return ret;
}

ret = reset_deassert(&usb_phy->resets);
if (ret) {
dev_err(dev, "failed to deassert usb_%ldreset reset\n", phy->id);
dev_err(phy->dev, "failed to deassert usb_%ldreset reset\n",
phy->id);
return ret;
}

Expand Down Expand Up @@ -338,13 +340,15 @@ static int sun4i_usb_phy_exit(struct phy *phy)

ret = clk_disable(&usb_phy->clocks);
if (ret) {
dev_err(dev, "failed to disable usb_%ldphy clock\n", phy->id);
dev_err(phy->dev, "failed to disable usb_%ldphy clock\n",
phy->id);
return ret;
}

ret = reset_assert(&usb_phy->resets);
if (ret) {
dev_err(dev, "failed to assert usb_%ldreset reset\n", phy->id);
dev_err(phy->dev, "failed to assert usb_%ldreset reset\n",
phy->id);
return ret;
}

Expand Down

0 comments on commit 7334517

Please sign in to comment.