Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/sitronix/st7571-i2c: Make st7571_panel_data variables static const

The kernel test robot reported that sparse gives the following warnings:

make C=2 M=drivers/gpu/drm/sitronix/
CC [M] st7571-i2c.o
CHECK st7571-i2c.c
st7571-i2c.c:1027:26: warning: symbol 'st7567_config' was not declared. Should it be static?
st7571-i2c.c:1039:26: warning: symbol 'st7571_config' was not declared. Should it be static?
MODPOST Module.symvers
LD [M] st7571-i2c.ko

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202507180503.nfyD9uRv-lkp@intel.com
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250718152534.729770-1-javierm@redhat.com
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>

+2 -2
+2 -2
drivers/gpu/drm/sitronix/st7571-i2c.c
··· 1024 1024 drm_dev_unplug(&st7571->dev); 1025 1025 } 1026 1026 1027 - struct st7571_panel_data st7567_config = { 1027 + static const struct st7571_panel_data st7567_config = { 1028 1028 .init = st7567_lcd_init, 1029 1029 .parse_dt = st7567_parse_dt, 1030 1030 .constraints = { ··· 1036 1036 }, 1037 1037 }; 1038 1038 1039 - struct st7571_panel_data st7571_config = { 1039 + static const struct st7571_panel_data st7571_config = { 1040 1040 .init = st7571_lcd_init, 1041 1041 .parse_dt = st7571_parse_dt, 1042 1042 .constraints = {