All of lore.kernel.org
 help / color / mirror / Atom feed
* [lpieralisi:dev/acpi-static-table-gsi-deferral 6/6] drivers/clocksource/arm_arch_timer_mmio.c:208:15: error: implicit declaration of function 'acpi_register_gsi'
@ 2026-09-07 18:34 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2026-09-07 18:34 UTC (permalink / raw)
  To: Lorenzo Pieralisi; +Cc: oe-kbuild-all

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/linux.git dev/acpi-static-table-gsi-deferral
head:   1d08fa15e38840796959db081e78ac188d2c882c
commit: 1d08fa15e38840796959db081e78ac188d2c882c [6/6] clocksource: Implement arch mem timer deferred probe
config: arm64-allnoconfig (https://download.01.org/0day-ci/archive/20260908/202609080239.Q5CEGYED-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 16.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260908/202609080239.Q5CEGYED-lkp@intel.com/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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202609080239.Q5CEGYED-lkp@intel.com/

All errors (new ones prefixed by >>):

   drivers/clocksource/arm_arch_timer_mmio.c: In function 'arch_timer_mmio_map_gsi':
>> drivers/clocksource/arm_arch_timer_mmio.c:208:15: error: implicit declaration of function 'acpi_register_gsi' [-Wimplicit-function-declaration]
     208 |         ret = acpi_register_gsi(&pdev->dev, gsi, trigger, polarity);
         |               ^~~~~~~~~~~~~~~~~


vim +/acpi_register_gsi +208 drivers/clocksource/arm_arch_timer_mmio.c

   194	
   195	static int arch_timer_mmio_map_gsi(struct platform_device *pdev, u32 gsi,
   196					   u32 flags, int *irq)
   197	{
   198		int trigger, polarity, ret;
   199	
   200		if (!gsi || *irq)
   201			return 0;
   202	
   203		trigger = (flags & ACPI_GTDT_INTERRUPT_MODE) ? ACPI_EDGE_SENSITIVE
   204							     : ACPI_LEVEL_SENSITIVE;
   205		polarity = (flags & ACPI_GTDT_INTERRUPT_POLARITY) ? ACPI_ACTIVE_LOW
   206								  : ACPI_ACTIVE_HIGH;
   207	
 > 208		ret = acpi_register_gsi(&pdev->dev, gsi, trigger, polarity);
   209		if (ret < 0)
   210			return ret;
   211	
   212		*irq = ret;
   213	
   214		return 0;
   215	}
   216	

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2026-09-07 18:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07 18:34 [lpieralisi:dev/acpi-static-table-gsi-deferral 6/6] drivers/clocksource/arm_arch_timer_mmio.c:208:15: error: implicit declaration of function 'acpi_register_gsi' kernel test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.