Message ID | 20200703153646.28533-3-patrick.delaunay@st.com |
---|---|
State | Accepted |
Commit | f286e37c14ca47bf3303f47b19771b7242724a3b |
Headers | show |
Series | phy: generic: add error trace to detect PHY issue in uclass | expand |
On Fri, Jul 03, 2020 at 05:36:41PM +0200, Patrick Delaunay wrote: > 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> Applied to u-boot/next, thanks! -- Tom
diff --git a/board/sunxi/board.c b/board/sunxi/board.c index f32e8f582f..f1925f032d 100644 --- a/board/sunxi/board.c +++ b/board/sunxi/board.c @@ -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; }
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 at st.com> --- (no changes since v1) board/sunxi/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)