Hi Antoniu, kernel test robot noticed the following build errors: [auto build test ERROR on robh/for-next] [also build test ERROR on linus/master v6.11] [cannot apply to jic23-iio/togreg next-20240924] [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/Antoniu-Miclaus/iio-backend-add-API-for-interface-get/20240923-182050 base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next patch link: https://lore.kernel.org/r/20240923101206.3753-7-antoniu.miclaus%40analog.com patch subject: [PATCH 6/7] iio: adc: ad485x: add ad485x driver config: openrisc-allyesconfig (https://download.01.org/0day-ci/archive/20240924/202409242353.rDAcuGYR-lkp@xxxxxxxxx/config) compiler: or1k-linux-gcc (GCC) 14.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240924/202409242353.rDAcuGYR-lkp@xxxxxxxxx/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202409242353.rDAcuGYR-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/iio/adc/ad485x.c: In function 'ad485x_get_packet_format': >> drivers/iio/adc/ad485x.c:396:18: error: implicit declaration of function 'FIELD_GET' [-Wimplicit-function-declaration] 396 | format = FIELD_GET(AD485X_PACKET_FORMAT_MASK, format); | ^~~~~~~~~ drivers/iio/adc/ad485x.c: At top level: drivers/iio/adc/ad485x.c:854:23: warning: initialized field overwritten [-Woverride-init] 854 | .resolution = 16, | ^~ drivers/iio/adc/ad485x.c:854:23: note: (near initialization for 'ad4856_info.resolution') vim +/FIELD_GET +396 drivers/iio/adc/ad485x.c 384 385 static int ad485x_get_packet_format(struct iio_dev *indio_dev, 386 const struct iio_chan_spec *chan) 387 { 388 struct ad485x_state *st = iio_priv(indio_dev); 389 unsigned int format; 390 int ret; 391 392 ret = regmap_read(st->regmap, AD485X_REG_PACKET, &format); 393 if (ret) 394 return ret; 395 > 396 format = FIELD_GET(AD485X_PACKET_FORMAT_MASK, format); 397 398 return format; 399 } 400 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki