Hi Linus, I love your patch! Yet something to improve: [auto build test ERROR on soc/for-next] [also build test ERROR on linus/master v6.0-rc3 next-20220901] [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/Linus-Walleij/ARM-ep93xx-Convert-to-use-descriptors-for-GPIO-LEDs/20220831-044651 base: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git for-next config: arm-ep93xx_defconfig (https://download.01.org/0day-ci/archive/20220902/202209020143.4bgj9GIh-lkp@xxxxxxxxx/config) compiler: clang version 16.0.0 (https://github.com/llvm/llvm-project c55b41d5199d2394dd6cdb8f52180d8b81d809d4) 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 # install arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://github.com/intel-lab-lkp/linux/commit/198889a7fb8ce93e00c3b801161bca6f76efdf3d git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Linus-Walleij/ARM-ep93xx-Convert-to-use-descriptors-for-GPIO-LEDs/20220831-044651 git checkout 198889a7fb8ce93e00c3b801161bca6f76efdf3d # 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=arm SHELL=/bin/bash If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot <lkp@xxxxxxxxx> All errors (new ones prefixed by >>): >> arch/arm/mach-ep93xx/core.c:1000:50: error: expected ')' gpiod_add_lookup_table((&ep93xx_leds_gpio_table); ^ arch/arm/mach-ep93xx/core.c:1000:24: note: to match this '(' gpiod_add_lookup_table((&ep93xx_leds_gpio_table); ^ 1 error generated. vim +1000 arch/arm/mach-ep93xx/core.c 972 973 struct device __init *ep93xx_init_devices(void) 974 { 975 struct device *parent; 976 977 /* Disallow access to MaverickCrunch initially */ 978 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA); 979 980 /* Default all ports to GPIO */ 981 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS | 982 EP93XX_SYSCON_DEVCFG_GONK | 983 EP93XX_SYSCON_DEVCFG_EONIDE | 984 EP93XX_SYSCON_DEVCFG_GONIDE | 985 EP93XX_SYSCON_DEVCFG_HONIDE); 986 987 parent = ep93xx_init_soc(); 988 989 /* Get the GPIO working early, other devices need it */ 990 platform_device_register(&ep93xx_gpio_device); 991 992 amba_device_register(&uart1_device, &iomem_resource); 993 amba_device_register(&uart2_device, &iomem_resource); 994 amba_device_register(&uart3_device, &iomem_resource); 995 996 platform_device_register(&ep93xx_rtc_device); 997 platform_device_register(&ep93xx_ohci_device); 998 platform_device_register(&ep93xx_wdt_device); 999 > 1000 gpiod_add_lookup_table((&ep93xx_leds_gpio_table); 1001 gpio_led_register_device(-1, &ep93xx_led_data); 1002 1003 return parent; 1004 } 1005 -- 0-DAY CI Kernel Test Service https://01.org/lkp