tree: https://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git master head: fdbb3ef0d4aadf9a3374c2a892098be89e9a3abb commit: 7eead7ebd4fa6978d3b020b2615f0680a7e98c5e [12/17] gpio: add sloppy logic analyzer using polling config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240612/202406120736.5AEAsytB-lkp@xxxxxxxxx/config) compiler: alpha-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240612/202406120736.5AEAsytB-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/202406120736.5AEAsytB-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> drivers/gpio/gpio-sloppy-logic-analyzer.c:316:19: error: initialization of 'void (*)(struct platform_device *)' from incompatible pointer type 'int (*)(struct platform_device *)' [-Werror=incompatible-pointer-types] 316 | .remove = gpio_la_poll_remove, | ^~~~~~~~~~~~~~~~~~~ drivers/gpio/gpio-sloppy-logic-analyzer.c:316:19: note: (near initialization for 'gpio_la_poll_device_driver.<anonymous>.remove') cc1: some warnings being treated as errors vim +316 drivers/gpio/gpio-sloppy-logic-analyzer.c 313 314 static struct platform_driver gpio_la_poll_device_driver = { 315 .probe = gpio_la_poll_probe, > 316 .remove = gpio_la_poll_remove, 317 .driver = { 318 .name = GPIO_LA_NAME, 319 .of_match_table = gpio_la_poll_of_match, 320 } 321 }; 322 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki