Staging: sm750fb: Use ARRAY_SIZE macro

ARRAY_SIZE is more concise to use when the size of an array is divided
by the size of its first element.

Changes made using Coccinelle-

@@
type T;
T[] E;
@@

- (sizeof(E)/sizeof(E[...]))
+ ARRAY_SIZE(E)

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Shraddha Barke 2015-10-09 00:55:17 +05:30 committed by Greg Kroah-Hartman
parent f9459c0aa4
commit 80fb74c387
1 changed files with 2 additions and 2 deletions

View File

@ -384,10 +384,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 = ARRAY_SIZE(xparm_PIXEL);
} else {
xparm = &xparm_MXCLK[0];
xcnt = sizeof(xparm_MXCLK) / sizeof(xparm_MXCLK[0]);
xcnt = ARRAY_SIZE(xparm_MXCLK);
}