]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: sm750fb: Add space around '/'
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Sun, 4 Oct 2015 14:37:53 +0000 (20:07 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 08:43:18 +0000 (09:43 +0100)
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>
drivers/staging/sm750fb/ddk750_chip.c

index e987971cce28bc3fc2cf183422612c40b05df2d6..8d167fc08f833fa79bc12459e741aabfce535fac 100644 (file)
@@ -391,10 +391,10 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
 
        if (pll->clockType != MXCLK_PLL) {
                xparm = &xparm_PIXEL[0];
-               xcnt = sizeof(xparm_PIXEL)/sizeof(xparm_PIXEL[0]);
+               xcnt = sizeof(xparm_PIXEL) / sizeof(xparm_PIXEL[0]);
        } else {
                xparm = &xparm_MXCLK[0];
-               xcnt = sizeof(xparm_MXCLK)/sizeof(xparm_MXCLK[0]);
+               xcnt = sizeof(xparm_MXCLK) / sizeof(xparm_MXCLK[0]);
        }