summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2020-11-16 20:47:03 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2020-11-24 09:51:20 +0100
commit4ba7d06d114cfd74a0638f47796a30067dc83e4c (patch)
treeea6e7a7268dcbfd65a210cd4aa50fae9d9f5c82a
parent8b35facbb9712d5cef97be3a56c0f52807cf8384 (diff)
downloadbarebox-4ba7d06d114cfd74a0638f47796a30067dc83e4c.tar.gz
barebox-4ba7d06d114cfd74a0638f47796a30067dc83e4c.tar.xz
clk: imx6: demote warning about ldb_di_clk reparenting
Linux logging this is justified, because it alerts to problems in the boot firmware. barebox warning about it serves no real purpose other than indicating that barebox was chainloaded. Make it a debug log to not clutter the log. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/clk/imx/clk-imx6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/imx/clk-imx6.c b/drivers/clk/imx/clk-imx6.c
index cb03024458..6935a8e852 100644
--- a/drivers/clk/imx/clk-imx6.c
+++ b/drivers/clk/imx/clk-imx6.c
@@ -482,9 +482,9 @@ static void init_ldb_clks(struct device_node *np, void __iomem *ccm_base)
of_assigned_ldb_sels(np, &sel[0][3], &sel[1][3]);
for (i = 0; i < 2; i++) {
- /* Warn if a glitch might have been introduced already */
+ /* log if a glitch might have been introduced already */
if (sel[i][0] != LDB_DI_SEL_MMDC_CH1_AXI) {
- pr_warn("ccm: ldb_di%d_sel already changed from reset value: %d\n",
+ pr_debug("ccm: ldb_di%d_sel already changed from reset value: %d\n",
i, sel[i][0]);
}