On Fri, Jul 26, 2019 at 3:59 PM YueHaibing <yuehaibing@xxxxxxxxxx> wrote: > > Fix sparse warnings: > > drivers/scsi/initio.c:881:22: warning: symbol 'initio_find_busy_scb' was not declared. Should it be static? > drivers/scsi/initio.c:919:22: warning: symbol 'initio_find_done_scb' was not declared. Should it be static? > drivers/scsi/initio.c:1657:5: warning: symbol 'initio_state_7' was not declared. Should it be static? > drivers/scsi/initio.c:1743:5: warning: symbol 'initio_xpad_in' was not declared. Should it be static? > drivers/scsi/initio.c:1767:5: warning: symbol 'initio_xpad_out' was not declared. Should it be static? > drivers/scsi/initio.c:1792:5: warning: symbol 'initio_status_msg' was not declared. Should it be static? > drivers/scsi/initio.c:1842:5: warning: symbol 'int_initio_busfree' was not declared. Should it be static? > drivers/scsi/initio.c:1912:5: warning: symbol 'int_initio_resel' was not declared. Should it be static? > drivers/scsi/initio.c:2368:5: warning: symbol 'initio_bus_device_reset' was not declared. Should it be static? > > Reported-by: Hulk Robot <hulkci@xxxxxxxxxx> > Signed-off-by: YueHaibing <yuehaibing@xxxxxxxxxx> The patch looks fine, but I wonder if sparse should print a different warning message here. Note that those functions are in fact static, they just have a 'static' forward declaration followed by a definition without the 'static' keyword. The change does improve readability of course, so maybe it's not worth changing sparse. Arnd