Hi Jakob, Thank you for the patch! Yet something to improve: [auto build test ERROR on v5.19] [also build test ERROR on next-20220805] [cannot apply to jic23-iio/togreg linus/master] [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#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Jakob-Hauser/iio-magnetometer-yas530-Change-data-type-of-hard_offsets-to-signed/20220808-080209 base: 3d7cb6b04c3f3115719235cc6866b10326de34cd config: hexagon-randconfig-r045-20220807 (https://download.01.org/0day-ci/archive/20220808/202208081346.EWHUWCSa-lkp@xxxxxxxxx/config) compiler: clang version 16.0.0 (https://github.com/llvm/llvm-project 5f1c7e2cc5a3c07cbc2412e851a7283c1841f520) 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/2e5a660a127b0fa7ca71e3e30356dc2254ec13eb git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Jakob-Hauser/iio-magnetometer-yas530-Change-data-type-of-hard_offsets-to-signed/20220808-080209 git checkout 2e5a660a127b0fa7ca71e3e30356dc2254ec13eb # 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/iio/magnetometer/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot <lkp@xxxxxxxxx> All errors (new ones prefixed by >>): >> drivers/iio/magnetometer/yamaha-yas530.c:933:19: error: initializer element is not a compile-time constant .product_name = yas5xx_product_name[yas530], ^~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. vim +933 drivers/iio/magnetometer/yamaha-yas530.c 929 930 static const struct yas5xx_chip_info yas5xx_chip_info_tbl[] = { 931 [yas530] = { 932 .devid = YAS530_DEVICE_ID, > 933 .product_name = yas5xx_product_name[yas530], 934 .version_name = yas5xx_version_names[yas530], 935 }, 936 [yas532] = { 937 .devid = YAS532_DEVICE_ID, 938 .product_name = yas5xx_product_name[yas532], 939 .version_name = yas5xx_version_names[yas532], 940 }, 941 [yas533] = { 942 .devid = YAS532_DEVICE_ID, 943 .product_name = yas5xx_product_name[yas533], 944 .version_name = yas5xx_version_names[yas533], 945 }, 946 }; 947 -- 0-DAY CI Kernel Test Service https://01.org/lkp