mirror of https://gitee.com/openkylin/linux.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 <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c18c331193
commit
f40917ea0b
|
@ -407,10 +407,10 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
|
||||||
|
|
||||||
for (d = xcnt - 1; d >= 0; d--) {
|
for (d = xcnt - 1; d >= 0; d--) {
|
||||||
X = xparm[d].value;
|
X = xparm[d].value;
|
||||||
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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue