Hi Markuss, I love your patch! Perhaps something to improve: [auto build test WARNING on dtor-input/next] [also build test WARNING on linux/master linus/master v5.18-rc5 next-20220504] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/intel-lab-lkp/linux/commits/Markuss-Broks/Add-support-for-Imagis-IST3038B/20220504-232637 base: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next config: hexagon-randconfig-r022-20220502 (https://download.01.org/0day-ci/archive/20220505/202205050459.Cn4Mj5ny-lkp@xxxxxxxxx/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 363b3a645a1e30011cc8da624f13dac5fd915628) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/intel-lab-lkp/linux/commit/a22f360f66c82a3bc53d9861a62d2d2e5abe897c git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Markuss-Broks/Add-support-for-Imagis-IST3038B/20220504-232637 git checkout a22f360f66c82a3bc53d9861a62d2d2e5abe897c # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash drivers/input/touchscreen/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <lkp@xxxxxxxxx> All warnings (new ones prefixed by >>): >> drivers/input/touchscreen/imagis.c:366:39: warning: unused variable 'imagis_3038b_data' [-Wunused-const-variable] static const struct imagis_properties imagis_3038b_data = { ^ >> drivers/input/touchscreen/imagis.c:374:39: warning: unused variable 'imagis_3038c_data' [-Wunused-const-variable] static const struct imagis_properties imagis_3038c_data = { ^ 2 warnings generated. vim +/imagis_3038b_data +366 drivers/input/touchscreen/imagis.c 365 > 366 static const struct imagis_properties imagis_3038b_data = { 367 .interrupt_msg_cmd = IST3038B_REG_STATUS, 368 .touch_coord_cmd = IST3038B_REG_STATUS, 369 .whoami_cmd = IST3038B_REG_CHIPID, 370 .whoami_val = IST3038B_WHOAMI, 371 .protocol_b = true, 372 }; 373 > 374 static const struct imagis_properties imagis_3038c_data = { 375 .interrupt_msg_cmd = IST3038C_REG_INTR_MESSAGE, 376 .touch_coord_cmd = IST3038C_REG_TOUCH_COORD, 377 .whoami_cmd = IST3038C_REG_CHIPID, 378 .whoami_val = IST3038C_WHOAMI, 379 }; 380 -- 0-DAY CI Kernel Test Service https://01.org/lkp