tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: 7f63ebb23914c3b2e597112d96eba6edb440e907 commit: 3053668e6b211924bb67c19d791a5a532eca2ad8 [1546/1546] arm64: Introduce Xint software solution config: x86_64-rhel-9.4 (https://download.01.org/0day-ci/archive/20241128/202411281636.uf1FPOs2-lkp@i...) compiler: gcc-12 (Debian 12.2.0-14) 12.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241128/202411281636.uf1FPOs2-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/202411281636.uf1FPOs2-lkp@intel.com/
All warnings (new ones prefixed by >>):
kernel/irq/proc.c:334:13: warning: no previous prototype for 'register_irqchip_proc' [-Wmissing-prototypes]
334 | void __weak register_irqchip_proc(struct irq_desc *desc, void *irqp) { } | ^~~~~~~~~~~~~~~~~~~~~
kernel/irq/proc.c:335:13: warning: no previous prototype for 'unregister_irqchip_proc' [-Wmissing-prototypes]
335 | void __weak unregister_irqchip_proc(struct irq_desc *desc) { } | ^~~~~~~~~~~~~~~~~~~~~~~
vim +/register_irqchip_proc +334 kernel/irq/proc.c
333
334 void __weak register_irqchip_proc(struct irq_desc *desc, void *irqp) { } 335 void __weak unregister_irqchip_proc(struct irq_desc *desc) { }
336