clk: meson: silence debug print
authorJerome Brunet <jbrunet@baylibre.com>
Fri, 26 Oct 2018 13:42:50 +0000 (15:42 +0200)
committerNeil 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

index a096a35..f34f376 100644 (file)
@@ -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;
 }