projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5415bf3
)
clk: at91: clk-h32mx: replace dm_warn with dev_dbg
author
Eugen Hristev
<eugen.hristev@microchip.com>
Wed, 9 May 2018 07:58:30 +0000
(10:58 +0300)
committer
Tom Rini
<trini@konsulko.com>
Wed, 23 May 2018 21:30:03 +0000
(17:30 -0400)
dm_warn is too noisy, replace with dev_dbg for less noise.
Based on original work by Wenyou Yang
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
drivers/clk/at91/clk-h32mx.c
patch
|
blob
|
history
diff --git
a/drivers/clk/at91/clk-h32mx.c
b/drivers/clk/at91/clk-h32mx.c
index 485a023bfd351624e9dc268644994954cf900e4a..8f02d73d8dae0501d9204ef0cb109fbe6a42080b 100644
(file)
--- a/
drivers/clk/at91/clk-h32mx.c
+++ b/
drivers/clk/at91/clk-h32mx.c
@@
-26,7
+26,7
@@
static ulong sama5d4_h32mx_clk_get_rate(struct clk *clk)
rate /= 2;
if (rate > H32MX_MAX_FREQ)
- d
m_warn(
"H32MX clock is too fast\n");
+ d
ev_dbg(clk->dev,
"H32MX clock is too fast\n");
return rate;
}