mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-06 03:35:56 +00:00
usb: musb-new: sunxi: change trace level for phy errors managed by uclass
As the error message is now displayed by generic phy functions, the dev_err/pr_err can be change to dev_dbg/pr_debug. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
fc8ead1a0a
commit
c1e1dbb8f3
1 changed files with 4 additions and 4 deletions
|
@ -257,7 +257,7 @@ static int sunxi_musb_enable(struct musb *musb)
|
||||||
|
|
||||||
ret = generic_phy_power_on(&glue->phy);
|
ret = generic_phy_power_on(&glue->phy);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("failed to power on USB PHY\n");
|
pr_debug("failed to power on USB PHY\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -281,7 +281,7 @@ static void sunxi_musb_disable(struct musb *musb)
|
||||||
if (is_host_enabled(musb)) {
|
if (is_host_enabled(musb)) {
|
||||||
ret = generic_phy_power_off(&glue->phy);
|
ret = generic_phy_power_off(&glue->phy);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("failed to power off USB PHY\n");
|
pr_debug("failed to power off USB PHY\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -315,7 +315,7 @@ static int sunxi_musb_init(struct musb *musb)
|
||||||
|
|
||||||
ret = generic_phy_init(&glue->phy);
|
ret = generic_phy_init(&glue->phy);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(dev, "failed to init USB PHY\n");
|
dev_dbg(dev, "failed to init USB PHY\n");
|
||||||
goto err_rst;
|
goto err_rst;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -352,7 +352,7 @@ static int sunxi_musb_exit(struct musb *musb)
|
||||||
if (generic_phy_valid(&glue->phy)) {
|
if (generic_phy_valid(&glue->phy)) {
|
||||||
ret = generic_phy_exit(&glue->phy);
|
ret = generic_phy_exit(&glue->phy);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(dev, "failed to power off usb phy\n");
|
dev_dbg(dev, "failed to power off usb phy\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue