From: Amitoj Kaur Chawla Date: Sun, 4 Oct 2015 14:37:53 +0000 (+0530) Subject: staging: sm750fb: Add space around '/' X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c18c331193b2270a5d47f4108ab0fc2bf97c3b51;p=linux-beck.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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index e987971cce28..8d167fc08f83 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -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]); }