mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
clk: at91: clk-h32mx: replace dm_warn with dev_dbg
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>
This commit is contained in:
parent
5415bf3a00
commit
649aa6cfe8
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ static ulong sama5d4_h32mx_clk_get_rate(struct clk *clk)
|
||||||
rate /= 2;
|
rate /= 2;
|
||||||
|
|
||||||
if (rate > H32MX_MAX_FREQ)
|
if (rate > H32MX_MAX_FREQ)
|
||||||
dm_warn("H32MX clock is too fast\n");
|
dev_dbg(clk->dev, "H32MX clock is too fast\n");
|
||||||
|
|
||||||
return rate;
|
return rate;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue