From: Heinrich Schuchardt <xypron.glpk@gmx.de>
Date: Sun, 12 Nov 2017 19:59:44 +0000 (+0100)
Subject: rockchip: spi: the symbol for Hertz is Hz
X-Git-Tag: v2025.01-rc5-pxa1908~5355^2~4
X-Git-Url: http://git.dujemihanovic.xyz/img/html/index.html?a=commitdiff_plain;h=11f12c17d72499292f6e219ebbf8062faedcc5bb;p=u-boot.git

rockchip: spi: the symbol for Hertz is Hz

fix typo

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
---

diff --git a/drivers/spi/rk_spi.c b/drivers/spi/rk_spi.c
index b18db74e7e..03d3fa6763 100644
--- a/drivers/spi/rk_spi.c
+++ b/drivers/spi/rk_spi.c
@@ -94,7 +94,7 @@ static void rkspi_set_clk(struct rockchip_spi_priv *priv, uint speed)
 	 */
 	if (clk_div > 0xfffe) {
 		clk_div = 0xfffe;
-		debug("%s: can't divide down to %d hz (actual will be %d hz)\n",
+		debug("%s: can't divide down to %d Hz (actual will be %d Hz)\n",
 		      __func__, speed, priv->input_rate / clk_div);
 	}