board: sunxi: change trace level for phy errors managed by uclass

As the error message is now displayed by generic phy functions,
the pr_err can be change to pr_idebug.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
Patrick Delaunay 2020-07-03 17:36:41 +02:00 committed by Tom Rini
parent 2041ae5a5a
commit f286e37c14

View File

@ -711,7 +711,7 @@ int g_dnl_board_usb_cable_connected(void)
ret = generic_phy_init(&phy);
if (ret) {
pr_err("failed to init %s USB PHY\n", dev->name);
pr_debug("failed to init %s USB PHY\n", dev->name);
return ret;
}