]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
spi: sh-hspi: Fix checkpatch issue
authorJingoo Han <jg1.han@samsung.com>
Mon, 14 Oct 2013 01:35:42 +0000 (10:35 +0900)
committerMark Brown <broonie@linaro.org>
Tue, 15 Oct 2013 12:13:21 +0000 (13:13 +0100)
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>
drivers/spi/spi-sh-hspi.c

index e488a90a98b8acbfff5b1fd72dd92b54db2ae602..b9e7b5e61528d2100e28628d9575e2af84a1530a 100644 (file)
@@ -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);