mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Ryan Chen <ryan_chen@aspeedtech.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org,
	Thomas Gleixner <tglx@linutronix.de>
Subject: drivers/irqchip/irq-aspeed-scu-ic.c:107:27: warning: variable 'mask' set but not used
Date: Sun, 01 Feb 2026 09:50:43 +0800	[thread overview]
Message-ID: <202602010957.9uuKqUkG-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   162b42445b585cd89f45475848845db353539605
commit: b2a0c13f8b4fc3f6c8b279fdc4395a5fa57dda5d irqchip/aspeed-scu-ic: Add support for AST2700 SCU interrupt controllers
date:   5 months ago
config: arm-allyesconfig (https://download.01.org/0day-ci/archive/20260201/202602010957.9uuKqUkG-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260201/202602010957.9uuKqUkG-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/202602010957.9uuKqUkG-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/irqchip/irq-aspeed-scu-ic.c: In function 'aspeed_scu_ic_irq_handler_split':
>> drivers/irqchip/irq-aspeed-scu-ic.c:107:27: warning: variable 'mask' set but not used [-Wunused-but-set-variable]
     107 |         unsigned int sts, mask;
         |                           ^~~~


vim +/mask +107 drivers/irqchip/irq-aspeed-scu-ic.c

   101	
   102	static void aspeed_scu_ic_irq_handler_split(struct irq_desc *desc)
   103	{
   104		struct aspeed_scu_ic *scu_ic = irq_desc_get_handler_data(desc);
   105		struct irq_chip *chip = irq_desc_get_chip(desc);
   106		unsigned long bit, enabled, max, status;
 > 107		unsigned int sts, mask;
   108	
   109		chained_irq_enter(chip, desc);
   110	
   111		mask = scu_ic->irq_enable;
   112		sts = readl(scu_ic->base + scu_ic->isr);
   113		enabled = sts & scu_ic->irq_enable;
   114		sts = readl(scu_ic->base + scu_ic->isr);
   115		status = sts & enabled;
   116	
   117		bit = scu_ic->irq_shift;
   118		max = scu_ic->num_irqs + bit;
   119	
   120		for_each_set_bit_from(bit, &status, max) {
   121			generic_handle_domain_irq(scu_ic->irq_domain, bit - scu_ic->irq_shift);
   122			/* Clear interrupt */
   123			writel(BIT(bit), scu_ic->base + scu_ic->isr);
   124		}
   125	
   126		chained_irq_exit(chip, desc);
   127	}
   128	

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

             reply	other threads:[~2026-02-01  1:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-01  1:50 kernel test robot [this message]
2026-02-01 15:38 ` [PATCH] irqchip/aspeed-scu-ic: Remove unused variable mask Thomas Gleixner
2026-02-01 16:13   ` [tip: irq/drivers] " tip-bot2 for Thomas Gleixner
2026-02-03  5:31   ` [PATCH] " Ryan Chen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202602010957.9uuKqUkG-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=ryan_chen@aspeedtech.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome