]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
irqchip: bcm2835: Avoid arch/arm-specific handle_IRQ
authorEric Anholt <eric@anholt.net>
Tue, 31 May 2016 21:05:27 +0000 (14:05 -0700)
committerJason Cooper <jason@lakedaemon.net>
Sat, 4 Jun 2016 14:16:59 +0000 (14:16 +0000)
With commit

  76ba59f8366f genirq: Add irq_domain-aware core IRQ handler

architecture-specific irq handlers are no longer necessary.  Update the bcm2835
irq driver to use the core irq handler.  As a bonus, this allows the driver to
support arm64 as well.

Signed-off-by: Eric Anholt <eric@anholt.net>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Link: https://lkml.kernel.org/r/1464728727-16300-1-git-send-email-eric@anholt.net
[jac reworded commit message for clarity]
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
drivers/irqchip/irq-bcm2835.c
drivers/irqchip/irq-bcm2836.c

index bf9cc5f2e839e845fe1ce65caa672b6212d3ffbc..44d7c38dde479d771f3552e914bf8c1c1f5019f7 100644 (file)
@@ -52,7 +52,6 @@
 #include <linux/irqdomain.h>
 
 #include <asm/exception.h>
-#include <asm/mach/irq.h>
 
 /* Put the bank and irq (32 bits) into the hwirq */
 #define MAKE_HWIRQ(b, n)       ((b << 5) | (n))
@@ -242,7 +241,7 @@ static void __exception_irq_entry bcm2835_handle_irq(
        u32 hwirq;
 
        while ((hwirq = get_next_armctrl_hwirq()) != ~0)
-               handle_IRQ(irq_linear_revmap(intc.domain, hwirq), regs);
+               handle_domain_irq(intc.domain, hwirq, regs);
 }
 
 static void bcm2836_chained_handle_irq(struct irq_desc *desc)
index 72ff1d5c5de67058f4ef22bb233c41b7c737d6e3..27875982657ea45f3c4d235c0beaa5cd7b18aa32 100644 (file)
@@ -180,7 +180,7 @@ __exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
        } else if (stat) {
                u32 hwirq = ffs(stat) - 1;
 
-               handle_IRQ(irq_linear_revmap(intc.domain, hwirq), regs);
+               handle_domain_irq(intc.domain, hwirq, regs);
        }
 }