[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202509070538.5HcCJf2T-lkp@intel.com>
Date: Sun, 7 Sep 2025 05:26:13 +0800
From: kernel test robot <lkp@...el.com>
To: Ryan Chen <ryan_chen@...eedtech.com>,
Eddie James <eajames@...ux.ibm.com>,
Thomas Gleixner <tglx@...utronix.de>, Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk@...nel.org>,
Conor Dooley <conor+dt@...nel.org>, Joel Stanley <joel@....id.au>,
Andrew Jeffery <andrew@...econstruct.com.au>,
Lee Jones <lee@...nel.org>, linux-aspeed@...ts.ozlabs.org,
linux-kernel@...r.kernel.org, devicetree@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org
Cc: llvm@...ts.linux.dev, oe-kbuild-all@...ts.linux.dev
Subject: Re: [PATCH v3 4/4] irqchip/aspeed-scu-ic: Add support AST2700 SCU
interrupt controllers
Hi Ryan,
kernel test robot noticed the following build warnings:
[auto build test WARNING on tip/irq/core]
[also build test WARNING on robh/for-next lee-mfd/for-mfd-next lee-mfd/for-mfd-fixes linus/master v6.17-rc4 next-20250905]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Ryan-Chen/irqchip-aspeed-scu-ic-Refactor-driver-to-support-variant-based-initialization/20250906-095043
base: tip/irq/core
patch link: https://lore.kernel.org/r/20250906014846.861368-5-ryan_chen%40aspeedtech.com
patch subject: [PATCH v3 4/4] irqchip/aspeed-scu-ic: Add support AST2700 SCU interrupt controllers
config: arm-randconfig-001-20250906 (https://download.01.org/0day-ci/archive/20250907/202509070538.5HcCJf2T-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 7fb1dc08d2f025aad5777bb779dfac1197e9ef87)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250907/202509070538.5HcCJf2T-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202509070538.5HcCJf2T-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/irqchip/irq-aspeed-scu-ic.c:93:34: warning: variable 'mask' is uninitialized when used here [-Wuninitialized]
93 | writel((readl(scu_ic->base) & ~mask) |
| ^~~~
drivers/irqchip/irq-aspeed-scu-ic.c:69:24: note: initialize the variable 'mask' to silence this warning
69 | unsigned int sts, mask;
| ^
| = 0
>> drivers/irqchip/irq-aspeed-scu-ic.c:106:20: warning: variable 'mask' set but not used [-Wunused-but-set-variable]
106 | unsigned int sts, mask;
| ^
2 warnings generated.
vim +/mask +106 drivers/irqchip/irq-aspeed-scu-ic.c
100
101 static void aspeed_scu_ic_irq_handler_split(struct irq_desc *desc)
102 {
103 struct aspeed_scu_ic *scu_ic = irq_desc_get_handler_data(desc);
104 struct irq_chip *chip = irq_desc_get_chip(desc);
105 unsigned long bit, enabled, max, status;
> 106 unsigned int sts, mask;
107
108 chained_irq_enter(chip, desc);
109
110 mask = scu_ic->irq_enable;
111 sts = readl(scu_ic->base + scu_ic->isr);
112 enabled = sts & scu_ic->irq_enable;
113 sts = readl(scu_ic->base + scu_ic->isr);
114 status = sts & enabled;
115
116 bit = scu_ic->irq_shift;
117 max = scu_ic->num_irqs + bit;
118
119 for_each_set_bit_from(bit, &status, max) {
120 generic_handle_domain_irq(scu_ic->irq_domain, bit - scu_ic->irq_shift);
121 writel(BIT(bit), scu_ic->base + scu_ic->isr); // clear interrupt
122 }
123
124 chained_irq_exit(chip, desc);
125 }
126
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists