linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq'
@ 2021-06-10 14:05 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2021-06-10 14:05 UTC (permalink / raw)
  To: Robert Hancock; +Cc: kbuild-all, linux-kernel, Marc Zyngier

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

Hi Robert,

First bad commit (maybe != root cause):

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   cd1245d75ce93b8fd206f4b34eb58bcfe156d5e9
commit: debf69cfd4c618c7036a13cc4edd1faf87ce7d53 irqchip/xilinx: Expose Kconfig option for Zynq/ZynqMP
date:   7 weeks ago
config: arm-randconfig-r032-20210610 (attached as .config)
compiler: arm-linux-gnueabi-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://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm 

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

All warnings (new ones prefixed by >>):

>> drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq' [-Wmissing-prototypes]
     127 | unsigned int xintc_get_irq(void)
         |              ^~~~~~~~~~~~~


vim +/xintc_get_irq +127 drivers/irqchip/irq-xilinx-intc.c

67862a3c47fcfc Mubin Sayyed 2020-03-17  126  
4cea749d56bec9 Marc Zyngier 2020-03-30 @127  unsigned int xintc_get_irq(void)
4cea749d56bec9 Marc Zyngier 2020-03-30  128  {
4cea749d56bec9 Marc Zyngier 2020-03-30  129  	unsigned int irq = -1;
4cea749d56bec9 Marc Zyngier 2020-03-30  130  	u32 hwirq;
4cea749d56bec9 Marc Zyngier 2020-03-30  131  
4cea749d56bec9 Marc Zyngier 2020-03-30  132  	hwirq = xintc_read(primary_intc, IVR);
4cea749d56bec9 Marc Zyngier 2020-03-30  133  	if (hwirq != -1U)
4cea749d56bec9 Marc Zyngier 2020-03-30  134  		irq = irq_find_mapping(primary_intc->root_domain, hwirq);
4cea749d56bec9 Marc Zyngier 2020-03-30  135  
4cea749d56bec9 Marc Zyngier 2020-03-30  136  	pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);
4cea749d56bec9 Marc Zyngier 2020-03-30  137  
4cea749d56bec9 Marc Zyngier 2020-03-30  138  	return irq;
4cea749d56bec9 Marc Zyngier 2020-03-30  139  }
4cea749d56bec9 Marc Zyngier 2020-03-30  140  

:::::: The code at line 127 was first introduced by commit
:::::: 4cea749d56bec9409f3bd126d2b2f949dc6c66e2 Revert "irqchip/xilinx: Enable generic irq multi handler"

:::::: TO: Marc Zyngier <maz@kernel.org>
:::::: CC: Marc Zyngier <maz@kernel.org>

---
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: 37018 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread
* drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq'
@ 2022-03-01  4:18 kernel test robot
  2022-03-01 16:34 ` Robert Hancock
  0 siblings, 1 reply; 7+ messages in thread
From: kernel test robot @ 2022-03-01  4:18 UTC (permalink / raw)
  To: Robert Hancock; +Cc: kbuild-all, linux-kernel, Marc Zyngier

Hi Robert,

First bad commit (maybe != root cause):

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   719fce7539cd3e186598e2aed36325fe892150cf
commit: debf69cfd4c618c7036a13cc4edd1faf87ce7d53 irqchip/xilinx: Expose Kconfig option for Zynq/ZynqMP
date:   10 months ago
config: arm64-randconfig-r031-20220227 (https://download.01.org/0day-ci/archive/20220301/202203011058.VcuVhghd-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.2.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://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/gpu/drm/tegra/ drivers/irqchip/

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

All warnings (new ones prefixed by >>):

>> drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq' [-Wmissing-prototypes]
     127 | unsigned int xintc_get_irq(void)
         |              ^~~~~~~~~~~~~


vim +/xintc_get_irq +127 drivers/irqchip/irq-xilinx-intc.c

67862a3c47fcfc9 Mubin Sayyed 2020-03-17  126  
4cea749d56bec94 Marc Zyngier 2020-03-30 @127  unsigned int xintc_get_irq(void)
4cea749d56bec94 Marc Zyngier 2020-03-30  128  {
4cea749d56bec94 Marc Zyngier 2020-03-30  129  	unsigned int irq = -1;
4cea749d56bec94 Marc Zyngier 2020-03-30  130  	u32 hwirq;
4cea749d56bec94 Marc Zyngier 2020-03-30  131  
4cea749d56bec94 Marc Zyngier 2020-03-30  132  	hwirq = xintc_read(primary_intc, IVR);
4cea749d56bec94 Marc Zyngier 2020-03-30  133  	if (hwirq != -1U)
4cea749d56bec94 Marc Zyngier 2020-03-30  134  		irq = irq_find_mapping(primary_intc->root_domain, hwirq);
4cea749d56bec94 Marc Zyngier 2020-03-30  135  
4cea749d56bec94 Marc Zyngier 2020-03-30  136  	pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);
4cea749d56bec94 Marc Zyngier 2020-03-30  137  
4cea749d56bec94 Marc Zyngier 2020-03-30  138  	return irq;
4cea749d56bec94 Marc Zyngier 2020-03-30  139  }
4cea749d56bec94 Marc Zyngier 2020-03-30  140  

:::::: The code at line 127 was first introduced by commit
:::::: 4cea749d56bec9409f3bd126d2b2f949dc6c66e2 Revert "irqchip/xilinx: Enable generic irq multi handler"

:::::: TO: Marc Zyngier <maz@kernel.org>
:::::: CC: Marc Zyngier <maz@kernel.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread
* drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq'
@ 2021-12-31 20:31 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2021-12-31 20:31 UTC (permalink / raw)
  To: Robert Hancock; +Cc: kbuild-all, linux-kernel, Marc Zyngier

Hi Robert,

First bad commit (maybe != root cause):

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   4f3d93c6eaff6b84e43b63e0d7a119c5920e1020
commit: debf69cfd4c618c7036a13cc4edd1faf87ce7d53 irqchip/xilinx: Expose Kconfig option for Zynq/ZynqMP
date:   8 months ago
config: arm64-buildonly-randconfig-r005-20211231 (https://download.01.org/0day-ci/archive/20220101/202201010402.GsFaB29E-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.2.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://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/irqchip/

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

All warnings (new ones prefixed by >>):

>> drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq' [-Wmissing-prototypes]
     127 | unsigned int xintc_get_irq(void)
         |              ^~~~~~~~~~~~~


vim +/xintc_get_irq +127 drivers/irqchip/irq-xilinx-intc.c

67862a3c47fcfc Mubin Sayyed 2020-03-17  126  
4cea749d56bec9 Marc Zyngier 2020-03-30 @127  unsigned int xintc_get_irq(void)
4cea749d56bec9 Marc Zyngier 2020-03-30  128  {
4cea749d56bec9 Marc Zyngier 2020-03-30  129  	unsigned int irq = -1;
4cea749d56bec9 Marc Zyngier 2020-03-30  130  	u32 hwirq;
4cea749d56bec9 Marc Zyngier 2020-03-30  131  
4cea749d56bec9 Marc Zyngier 2020-03-30  132  	hwirq = xintc_read(primary_intc, IVR);
4cea749d56bec9 Marc Zyngier 2020-03-30  133  	if (hwirq != -1U)
4cea749d56bec9 Marc Zyngier 2020-03-30  134  		irq = irq_find_mapping(primary_intc->root_domain, hwirq);
4cea749d56bec9 Marc Zyngier 2020-03-30  135  
4cea749d56bec9 Marc Zyngier 2020-03-30  136  	pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);
4cea749d56bec9 Marc Zyngier 2020-03-30  137  
4cea749d56bec9 Marc Zyngier 2020-03-30  138  	return irq;
4cea749d56bec9 Marc Zyngier 2020-03-30  139  }
4cea749d56bec9 Marc Zyngier 2020-03-30  140  

:::::: The code at line 127 was first introduced by commit
:::::: 4cea749d56bec9409f3bd126d2b2f949dc6c66e2 Revert "irqchip/xilinx: Enable generic irq multi handler"

:::::: TO: Marc Zyngier <maz@kernel.org>
:::::: CC: Marc Zyngier <maz@kernel.org>

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

^ permalink raw reply	[flat|nested] 7+ messages in thread
* drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq'
@ 2021-05-02 17:32 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2021-05-02 17:32 UTC (permalink / raw)
  To: Robert Hancock; +Cc: kbuild-all, linux-kernel, Marc Zyngier

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

Hi Robert,

First bad commit (maybe != root cause):

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   17ae69aba89dbfa2139b7f8024b757ab3cc42f59
commit: debf69cfd4c618c7036a13cc4edd1faf87ce7d53 irqchip/xilinx: Expose Kconfig option for Zynq/ZynqMP
date:   8 days ago
config: arm-randconfig-r035-20210502 (attached as .config)
compiler: arm-linux-gnueabi-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://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout debf69cfd4c618c7036a13cc4edd1faf87ce7d53
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=arm 

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

All warnings (new ones prefixed by >>):

>> drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq' [-Wmissing-prototypes]
     127 | unsigned int xintc_get_irq(void)
         |              ^~~~~~~~~~~~~


vim +/xintc_get_irq +127 drivers/irqchip/irq-xilinx-intc.c

67862a3c47fcfc Mubin Sayyed 2020-03-17  126  
4cea749d56bec9 Marc Zyngier 2020-03-30 @127  unsigned int xintc_get_irq(void)
4cea749d56bec9 Marc Zyngier 2020-03-30  128  {
4cea749d56bec9 Marc Zyngier 2020-03-30  129  	unsigned int irq = -1;
4cea749d56bec9 Marc Zyngier 2020-03-30  130  	u32 hwirq;
4cea749d56bec9 Marc Zyngier 2020-03-30  131  
4cea749d56bec9 Marc Zyngier 2020-03-30  132  	hwirq = xintc_read(primary_intc, IVR);
4cea749d56bec9 Marc Zyngier 2020-03-30  133  	if (hwirq != -1U)
4cea749d56bec9 Marc Zyngier 2020-03-30  134  		irq = irq_find_mapping(primary_intc->root_domain, hwirq);
4cea749d56bec9 Marc Zyngier 2020-03-30  135  
4cea749d56bec9 Marc Zyngier 2020-03-30  136  	pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);
4cea749d56bec9 Marc Zyngier 2020-03-30  137  
4cea749d56bec9 Marc Zyngier 2020-03-30  138  	return irq;
4cea749d56bec9 Marc Zyngier 2020-03-30  139  }
4cea749d56bec9 Marc Zyngier 2020-03-30  140  

:::::: The code at line 127 was first introduced by commit
:::::: 4cea749d56bec9409f3bd126d2b2f949dc6c66e2 Revert "irqchip/xilinx: Enable generic irq multi handler"

:::::: TO: Marc Zyngier <maz@kernel.org>
:::::: CC: Marc Zyngier <maz@kernel.org>

---
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: 37292 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-03-02 16:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10 14:05 drivers/irqchip/irq-xilinx-intc.c:127:14: warning: no previous prototype for 'xintc_get_irq' kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2022-03-01  4:18 kernel test robot
2022-03-01 16:34 ` Robert Hancock
2022-03-02 15:23   ` Michal Simek
2022-03-02 16:07     ` Robert Hancock
2021-12-31 20:31 kernel test robot
2021-05-02 17:32 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).