From: Heinrich Schuchardt Date: Sun, 12 Nov 2017 20:02:52 +0000 (+0100) Subject: omap3: spi: the symbol for Hertz is Hz X-Git-Tag: v2018.01-rc1~78 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=042de609ed49cfc41afb13639850c7b01079a527;p=oweals%2Fu-boot.git omap3: spi: the symbol for Hertz is Hz fix typo Signed-off-by: Heinrich Schuchardt --- 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; }