mirror of
https://github.com/torvalds/linux.git
synced 2024-11-30 08:01:59 +00:00
MIPS: irq: Avoid an unused-variable error
When CONFIG_IRQ_DOMAIN is set, there is a warning: arch/mips/kernel/irq.c:114:19: error: unused variable 'desc' [-Werror=unused-variable] 114 | struct irq_desc *desc; | ^~~~ This variable is unused, let's remove it. Signed-off-by: Yanteng Si <siyanteng@loongson.cn> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20211028095652.3503790-1-siyanteng@loongson.cn
This commit is contained in:
parent
0953fb2637
commit
34fca8947b
@ -111,8 +111,6 @@ void __irq_entry do_IRQ(unsigned int irq)
|
||||
#ifdef CONFIG_IRQ_DOMAIN
|
||||
void __irq_entry do_domain_IRQ(struct irq_domain *domain, unsigned int hwirq)
|
||||
{
|
||||
struct irq_desc *desc;
|
||||
|
||||
irq_enter();
|
||||
check_stack_overflow();
|
||||
generic_handle_domain_irq(domain, hwirq);
|
||||
|
Loading…
Reference in New Issue
Block a user