aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/irq.c
diff options
context:
space:
mode:
authorYanteng Si <siyanteng01@gmail.com>2021-10-28 17:56:52 +0800
committerMarc Zyngier <maz@kernel.org>2021-10-28 13:28:52 +0100
commit34fca8947b2743e6a3a9a8a3a44962e625993533 (patch)
tree3d91a61a437af7e92640db1f2b53553735e71ace /arch/mips/kernel/irq.c
parentirq: remove handle_domain_{irq,nmi}() (diff)
downloadlinux-dev-34fca8947b2743e6a3a9a8a3a44962e625993533.tar.xz
linux-dev-34fca8947b2743e6a3a9a8a3a44962e625993533.zip
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
Diffstat (limited to '')
-rw-r--r--arch/mips/kernel/irq.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c
index 1fee96ef8059..5e11582fe308 100644
--- a/arch/mips/kernel/irq.c
+++ b/arch/mips/kernel/irq.c
@@ -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);