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>
This commit is contained in:
Jerome Brunet 2018-10-26 15:42:50 +02:00 committed by Neil Armstrong
parent 19987c3908
commit 572aeb5338

View 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;
}