diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-28 13:21:09 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-28 13:21:09 +0000 |
commit | f01fd8e50b189be59e546e9a9dcb2db71e98682f (patch) | |
tree | bacf0b240c515c0e4f709fdc2fcb3b60c76d990b /target/linux/brcm63xx/patches-3.14/373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch | |
parent | 35996331c3f42e69eace5b57fa5e2e965c026a12 (diff) | |
download | upstream-f01fd8e50b189be59e546e9a9dcb2db71e98682f.tar.gz upstream-f01fd8e50b189be59e546e9a9dcb2db71e98682f.tar.bz2 upstream-f01fd8e50b189be59e546e9a9dcb2db71e98682f.zip |
brcm63xx: remove linux 3.14 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45089 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/patches-3.14/373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.14/373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/target/linux/brcm63xx/patches-3.14/373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch b/target/linux/brcm63xx/patches-3.14/373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch deleted file mode 100644 index c8c212b08f..0000000000 --- a/target/linux/brcm63xx/patches-3.14/373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 40c0e6e4f68ce0c759eb216b44cdfbe18de328b0 Mon Sep 17 00:00:00 2001 -From: Jonas Gorski <jogo@openwrt.org> -Date: Mon, 1 Dec 2014 00:20:07 +0100 -Subject: [PATCH 5/5] MIPS: BCM63XX: register interrupt controllers through DT - -Signed-off-by: Jonas Gorski <jogo@openwrt.org> ---- - arch/mips/bcm63xx/irq.c | 12 +++++++++++- - 1 file changed, 11 insertions(+), 1 deletion(-) - ---- a/arch/mips/bcm63xx/irq.c -+++ b/arch/mips/bcm63xx/irq.c -@@ -15,6 +15,8 @@ - #include <linux/irqchip.h> - #include <linux/irqchip/irq-bcm6345-ext.h> - #include <linux/irqchip/irq-bcm6345-periph.h> -+#include <linux/of.h> -+#include <linux/of_fdt.h> - #include <asm/irq_cpu.h> - #include <asm/mipsregs.h> - #include <bcm63xx_cpu.h> -@@ -189,7 +191,17 @@ static void bcm63xx_init_irq(void) - ext_shift); - } - -+static const struct of_device_id irqchip_of_match_mips_cpu_intc __used __section(__irqchip_of_table) = { -+ .compatible = "mti,cpu-interrupt-controller", -+ .data = mips_cpu_irq_of_init, -+}; -+ - void __init arch_init_irq(void) - { -- bcm63xx_init_irq(); -+#ifdef CONFIG_OF -+ if (initial_boot_params) -+ irqchip_init(); -+ else -+#endif -+ bcm63xx_init_irq(); - } |