diff options
author | Patrick Delaunay | 2020-07-03 17:36:41 +0200 |
---|---|---|
committer | Tom Rini | 2020-09-08 08:46:32 -0400 |
commit | f286e37c14ca47bf3303f47b19771b7242724a3b (patch) | |
tree | 4fab1b6ad7f6d32696f14ddc9f6b7aa5ad64f7f9 /board | |
parent | 2041ae5a5a84a2461b4754250d4301d8d0533fdd (diff) |
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>
Diffstat (limited to 'board')
-rw-r--r-- | board/sunxi/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sunxi/board.c b/board/sunxi/board.c index 71e2b758a3e..a5cf0b65c7b 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; } |