diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2015-10-04 20:18:32 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-08 09:43:18 +0100 |
commit | 07387cba8168b8dbffe17301290d65e893b831a2 (patch) | |
tree | 713f6f939041d06b7b2106269a9c4453026e5a2c | |
parent | 31418e37019ec188f4201587c7234bfb463e7bf4 (diff) | |
download | linux-07387cba8168b8dbffe17301290d65e893b831a2.tar.bz2 |
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>
-rw-r--r-- | drivers/staging/sm750fb/ddk750_chip.c | 2 |
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; |