tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS head: 3a28772f4b29bdda924e9a5d2e3ff1ff1b23fd14 commit: 00711bad7e372a30c4975ba43811ffa666aff0e1 [21355/21616] gpio: add phytium gpio driver config: arm64-randconfig-002-20240125 (https://download.01.org/0day-ci/archive/20240207/202402070439.VbTTHaS6-lkp@i...) compiler: aarch64-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240207/202402070439.VbTTHaS6-lkp@i...)
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@intel.com | Closes: https://lore.kernel.org/oe-kbuild-all/202402070439.VbTTHaS6-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/gpio/gpio-phytium-platform.c:30:36: warning: 'phytium_gpio_acpi_match' defined but not used [-Wunused-const-variable=]
30 | static const struct acpi_device_id phytium_gpio_acpi_match[] = { | ^~~~~~~~~~~~~~~~~~~~~~~
vim +/phytium_gpio_acpi_match +30 drivers/gpio/gpio-phytium-platform.c
29
30 static const struct acpi_device_id phytium_gpio_acpi_match[] = {
31 { "PHYT0001", 0 }, 32 { } 33 }; 34 MODULE_DEVICE_TABLE(acpi, phytium_gpio_acpi_match); 35