diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-11-12 21:02:52 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-20 20:18:40 -0500 |
commit | 042de609ed49cfc41afb13639850c7b01079a527 (patch) | |
tree | 76234c91027a6e19a20d5079c6e64e1ba27a142a /drivers/spi/omap3_spi.c | |
parent | dd2081a8e46877df5166fcd5af7f26c74a799317 (diff) | |
download | u-boot-042de609ed49cfc41afb13639850c7b01079a527.tar.gz u-boot-042de609ed49cfc41afb13639850c7b01079a527.tar.bz2 u-boot-042de609ed49cfc41afb13639850c7b01079a527.zip |
omap3: spi: the symbol for Hertz is Hz
fix typo
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'drivers/spi/omap3_spi.c')
-rw-r--r-- | drivers/spi/omap3_spi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/spi/omap3_spi.c b/drivers/spi/omap3_spi.c index ebbdcaf14a..1da4542af0 100644 --- a/drivers/spi/omap3_spi.c +++ b/drivers/spi/omap3_spi.c @@ -548,7 +548,8 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, } if (max_hz > OMAP3_MCSPI_MAX_FREQ) { - printf("SPI error: unsupported frequency %i Hz. Max frequency is 48 Mhz\n", max_hz); + printf("SPI error: unsupported frequency %i Hz. Max frequency is 48 MHz\n", + max_hz); return NULL; } |