diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-10-14 10:35:42 +0900 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-10-15 13:13:21 +0100 |
commit | a29c8ae7187aee902d37d7677255de726614e43e (patch) | |
tree | 12653c5c28b1835ca0bf4edfbeeab47db7344aa1 /drivers/spi | |
parent | 61e6cfa80de5760bbe406f4e815b7739205754d2 (diff) |
spi: sh-hspi: Fix checkpatch issue
Fix the following checkpatch warning.
WARNING: space prohibited before semicolon
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-sh-hspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-sh-hspi.c b/drivers/spi/spi-sh-hspi.c index e488a90a98b8..b9e7b5e61528 100644 --- a/drivers/spi/spi-sh-hspi.c +++ b/drivers/spi/spi-sh-hspi.c @@ -137,7 +137,7 @@ static void hspi_hw_setup(struct hspi_priv *hspi, rate /= 16; /* CLKCx calculation */ - rate /= (((idiv_clk & 0x1F) + 1) * 2) ; + rate /= (((idiv_clk & 0x1F) + 1) * 2); /* save best settings */ tmp = abs(target_rate - rate); |