projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19987c3
)
clk: meson: silence debug print
author
Jerome Brunet
<jbrunet@baylibre.com>
Fri, 26 Oct 2018 13:42:50 +0000
(15:42 +0200)
committer
Neil Armstrong
<narmstrong@baylibre.com>
Mon, 26 Nov 2018 13:40:52 +0000
(14:40 +0100)
This debug print was not designed to be active in non-debug mode.
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
drivers/clk/clk_meson.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk_meson.c
b/drivers/clk/clk_meson.c
index a096a3582c2797ce4c2462364f74e69e7e60ba2e..f34f37605764078df1a01bd2495904c4a78de2f0 100644
(file)
--- a/
drivers/clk/clk_meson.c
+++ b/
drivers/clk/clk_meson.c
@@
-791,7
+791,7
@@
static ulong meson_clk_get_rate_by_id(struct clk *clk, unsigned long id)
return -ENOENT;
}
-
printf
("clock %lu has rate %lu\n", id, rate);
+
debug
("clock %lu has rate %lu\n", id, rate);
return rate;
}