From: Amitoj Kaur Chawla Date: Sun, 4 Oct 2015 14:48:32 +0000 (+0530) Subject: staging: sm750fb: Add space around ':' X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=07387cba8168b8dbffe17301290d65e893b831a2;p=linux-beck.git staging: sm750fb: Add space around ':' Add space around operator ':'. Problem found using checkpatch.pl CHECK: spaces preferred around that ':' (ctx:VxV) Signed-off-by: Amitoj Kaur Chawla Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index 2aacb01d2e3d..03e259da622e 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -410,7 +410,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll) M = quo * X; M += fl_quo * X / 10000; /* round step */ - M += (fl_quo * X % 10000) > 5000 ? 1:0; + M += (fl_quo * X % 10000) > 5000 ? 1 : 0; if (M < 256 && M > 0) { unsigned int diff;