From: Michal Simek Date: Thu, 21 Dec 2017 13:22:46 +0000 (+0100) Subject: spi: zynqmp: Do not print information about clock value X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e425903d17e025f67036d623aa6775275f3da457;p=thirdparty%2Fu-boot.git spi: zynqmp: Do not print information about clock value This information is useful only for debugging. Signed-off-by: Michal Simek --- diff --git a/drivers/spi/zynqmp_qspi.c b/drivers/spi/zynqmp_qspi.c index e01a3c79b05..d856e9db1dd 100644 --- a/drivers/spi/zynqmp_qspi.c +++ b/drivers/spi/zynqmp_qspi.c @@ -199,7 +199,7 @@ static int zynqmp_qspi_ofdata_to_platdata(struct udevice *bus) dev_err(dev, "failed to get rate\n"); return clock; } - printf("%s: CLK %ld\n", __func__, clock); + debug("%s: CLK %ld\n", __func__, clock); ret = clk_enable(&clk); if (ret && ret != -ENOSYS) {