From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Delaunay Date: Tue, 12 Nov 2019 11:01:41 +0100 Subject: [U-Boot] [PATCH 3/7] board: sunxi: change trace level for phy errors managed by uclass In-Reply-To: <20191112100145.15940-1-patrick.delaunay@st.com> References: <20191112100145.15940-1-patrick.delaunay@st.com> Message-ID: <20191112100145.15940-3-patrick.delaunay@st.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- board/sunxi/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/sunxi/board.c b/board/sunxi/board.c index e3b2d13892..95697f4aae 100644 --- a/board/sunxi/board.c +++ b/board/sunxi/board.c @@ -705,7 +705,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; } -- 2.17.1