diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-10-14 01:35:42 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-10-15 12:13:21 (GMT) |
commit | a29c8ae7187aee902d37d7677255de726614e43e (patch) | |
tree | 12653c5c28b1835ca0bf4edfbeeab47db7344aa1 /drivers/spi/spi-sh-hspi.c | |
parent | 61e6cfa80de5760bbe406f4e815b7739205754d2 (diff) | |
download | linux-a29c8ae7187aee902d37d7677255de726614e43e.tar.xz |
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/spi-sh-hspi.c')
-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 e488a90..b9e7b5e 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); |