linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [xlnx:master 118/158] drivers/irqchip/irq-xilinx-intc.c:170:10: error: implicit declaration of function 'handle_domain_irq'; did you mean
@ 2021-02-25 19:46 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-02-25 19:46 UTC (permalink / raw)
  To: Michal Simek; +Cc: Stefan Asserhall, kbuild-all, linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 2536 bytes --]

tree:   https://github.com/Xilinx/linux-xlnx master
head:   6d1ffa89fc67781a31f8119d6bf3748ef23bdf9a
commit: c70cdd6eff0dd4c628294a8cba30a54c602e6b86 [118/158] irqchip: xilinx: Use handle_domain_irq()
config: c6x-allyesconfig (attached as .config)
compiler: c6x-elf-gcc (GCC) 9.3.0
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
        # https://github.com/Xilinx/linux-xlnx/commit/c70cdd6eff0dd4c628294a8cba30a54c602e6b86
        git remote add xlnx https://github.com/Xilinx/linux-xlnx
        git fetch --no-tags xlnx master
        git checkout c70cdd6eff0dd4c628294a8cba30a54c602e6b86
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=c6x 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/irqchip/irq-xilinx-intc.c: In function 'xil_intc_handle_irq':
>> drivers/irqchip/irq-xilinx-intc.c:170:10: error: implicit declaration of function 'handle_domain_irq'; did you mean 'handle_bad_irq'? [-Werror=implicit-function-declaration]
     170 |    ret = handle_domain_irq(irqc->root_domain, hwirq, regs);
         |          ^~~~~~~~~~~~~~~~~
         |          handle_bad_irq
   drivers/irqchip/irq-xilinx-intc.c: In function 'xilinx_intc_of_init':
   drivers/irqchip/irq-xilinx-intc.c:280:3: error: implicit declaration of function 'set_handle_irq'; did you mean 'generic_handle_irq'? [-Werror=implicit-function-declaration]
     280 |   set_handle_irq(xil_intc_handle_irq);
         |   ^~~~~~~~~~~~~~
         |   generic_handle_irq
   cc1: some warnings being treated as errors


vim +170 drivers/irqchip/irq-xilinx-intc.c

   160	
   161	static void xil_intc_handle_irq(struct pt_regs *regs)
   162	{
   163		int ret;
   164		unsigned int hwirq, cpu_id = smp_processor_id();
   165		struct xintc_irq_chip *irqc = per_cpu_ptr(&primary_intc, cpu_id);
   166	
   167		do {
   168			hwirq = irqc->read_fn(irqc->base + IVR);
   169			if (hwirq != -1U) {
 > 170				ret = handle_domain_irq(irqc->root_domain, hwirq, regs);
   171				WARN_ONCE(ret, "cpu %d: Unhandled HWIRQ %d\n",
   172					  cpu_id, hwirq);
   173				continue;
   174			}
   175	
   176			break;
   177		} while (1);
   178	}
   179	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 50886 bytes --]

[-- Attachment #3: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

only message in thread, other threads:[~2021-02-25 19:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25 19:46 [xlnx:master 118/158] drivers/irqchip/irq-xilinx-intc.c:170:10: error: implicit declaration of function 'handle_domain_irq'; did you mean kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).