summaryrefslogtreecommitdiff
path: root/drivers/staging/sm750fb
diff options
context:
space:
mode:
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>2015-10-04 20:18:32 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-08 09:43:18 +0100
commit07387cba8168b8dbffe17301290d65e893b831a2 (patch)
tree713f6f939041d06b7b2106269a9c4453026e5a2c /drivers/staging/sm750fb
parent31418e37019ec188f4201587c7234bfb463e7bf4 (diff)
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 <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb')
-rw-r--r--drivers/staging/sm750fb/ddk750_chip.c2
1 files changed, 1 insertions, 1 deletions
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;