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>
This commit is contained in:
parent
61e6cfa80d
commit
a29c8ae718
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue