Commit 07387cba authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: sm750fb: Add space around ':'

Add space around operator ':'. Problem found using
checkpatch.pl
CHECK: spaces preferred around that ':' (ctx:VxV)
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 31418e37
...@@ -410,7 +410,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll) ...@@ -410,7 +410,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
M = quo * X; M = quo * X;
M += fl_quo * X / 10000; M += fl_quo * X / 10000;
/* round step */ /* round step */
M += (fl_quo * X % 10000) > 5000 ? 1:0; M += (fl_quo * X % 10000) > 5000 ? 1 : 0;
if (M < 256 && M > 0) { if (M < 256 && M > 0) {
unsigned int diff; unsigned int diff;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment