On Thu, Aug 10, 2023 at 10:46 AM <coolrrsh@xxxxxxxxx> wrote: > > From: Rajeshwar R Shinde <coolrrsh@xxxxxxxxx> > > Use of macro ARRAY_SIZE to calculate array size minimizes > the redundant code and improves code reusability. > This fixes warnings reported by Coccinelle: > drivers/gpio/gpio-imx-scu.c:106:32-33: WARNING: Use ARRAY_SIZE ... > - gc->ngpio = sizeof(scu_rsrc_arr)/sizeof(unsigned int); > + gc->ngpio = ARRAY_SIZE(scu_rsrc_arr); And you need to include kernel.h for this. -- With Best Regards, Andy Shevchenko