diff options
author | Geert Uytterhoeven | 2016-03-14 16:30:16 +0100 |
---|---|---|
committer | Mark Brown | 2016-03-15 09:24:01 +0000 |
commit | bb51537aa825e98b970c784f802e7e09f29df3ba (patch) | |
tree | 8b13eb2bfc1fb91f610f8e45f5132ce4929d7713 /drivers/spi | |
parent | c508709bcffb644afbf5e5016fc7c90bf80c30ff (diff) |
spi: rockchip: Spelling s/divsor/divisor/
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-rockchip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-rockchip.c b/drivers/spi/spi-rockchip.c index 26e2688c104e..bfeb0d4c7ee0 100644 --- a/drivers/spi/spi-rockchip.c +++ b/drivers/spi/spi-rockchip.c @@ -527,7 +527,7 @@ static void rockchip_spi_config(struct rockchip_spi *rs) if (WARN_ON(rs->speed > MAX_SCLK_OUT)) rs->speed = MAX_SCLK_OUT; - /* the minimum divsor is 2 */ + /* the minimum divisor is 2 */ if (rs->max_freq < 2 * rs->speed) { clk_set_rate(rs->spiclk, 2 * rs->speed); rs->max_freq = clk_get_rate(rs->spiclk); |