diff options
author | Jerome Brunet <jbrunet@baylibre.com> | 2018-10-26 15:42:50 +0200 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2018-11-26 14:40:52 +0100 |
commit | 572aeb5338131484eb72d9ca9e6dd982d840dbf8 (patch) | |
tree | 0b4ec0508222c311414788a39e94f99727273db8 | |
parent | 19987c3908b88b48f59013a90917cd2ab6802626 (diff) |
clk: meson: silence debug print
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>
-rw-r--r-- | drivers/clk/clk_meson.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk_meson.c b/drivers/clk/clk_meson.c index a096a3582c..f34f376057 100644 --- 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; } |