diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-11-12 20:59:44 +0100 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-11-21 23:57:23 +0100 |
commit | 11f12c17d72499292f6e219ebbf8062faedcc5bb (patch) | |
tree | 39bf623ac4d6650a561e1b94b309807609f17fe7 /drivers | |
parent | f24e36dac38e520f79f8eb5d20ba3adbc987afb9 (diff) | |
download | u-boot-11f12c17d72499292f6e219ebbf8062faedcc5bb.zip u-boot-11f12c17d72499292f6e219ebbf8062faedcc5bb.tar.gz u-boot-11f12c17d72499292f6e219ebbf8062faedcc5bb.tar.bz2 |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/spi/rk_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/rk_spi.c b/drivers/spi/rk_spi.c index b18db74..03d3fa6 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); } |