diff options
author | John Crispin <john@openwrt.org> | 2013-07-14 18:00:34 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-07-14 18:00:34 +0000 |
commit | 89c03927368852cf912e76d553bcc7671f6c16cd (patch) | |
tree | c396a709343fe323501f82c078fc93d435701e9b /target/linux/ramips/patches-3.8/0017-MIPS-ralink-add-PCI-IRQ-handling.patch | |
parent | eb0a44917eea1b2d673d26c28df5aecbb8d77d67 (diff) | |
download | mtk-20170518-89c03927368852cf912e76d553bcc7671f6c16cd.zip mtk-20170518-89c03927368852cf912e76d553bcc7671f6c16cd.tar.gz mtk-20170518-89c03927368852cf912e76d553bcc7671f6c16cd.tar.bz2 |
ralink: drop v3.8 support
Signed-off-by: John Crispin <blogic@opewnrt.org>
SVN-Revision: 37311
Diffstat (limited to 'target/linux/ramips/patches-3.8/0017-MIPS-ralink-add-PCI-IRQ-handling.patch')
-rw-r--r-- | target/linux/ramips/patches-3.8/0017-MIPS-ralink-add-PCI-IRQ-handling.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/target/linux/ramips/patches-3.8/0017-MIPS-ralink-add-PCI-IRQ-handling.patch b/target/linux/ramips/patches-3.8/0017-MIPS-ralink-add-PCI-IRQ-handling.patch deleted file mode 100644 index c18817e..0000000 --- a/target/linux/ramips/patches-3.8/0017-MIPS-ralink-add-PCI-IRQ-handling.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 98ab228172e66e43766d9e2a0ddb73603c22dbd1 Mon Sep 17 00:00:00 2001 -From: Gabor Juhos <juhosg@openwrt.org> -Date: Wed, 10 Apr 2013 09:07:27 +0200 -Subject: [PATCH 17/79] MIPS: ralink: add PCI IRQ handling - -The Ralink IRQ code was not handling the PCI IRQ yet. Add this functionaility -to make PCI work on rt3883. - -Signed-off-by: John Crispin <blogic@openwrt.org> -Signed-off-by: Gabor Juhos <juhosg@openwrt.org> -Patchwork: http://patchwork.linux-mips.org/patch/5165/ ---- - arch/mips/ralink/irq.c | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/arch/mips/ralink/irq.c b/arch/mips/ralink/irq.c -index 6d054c5..d9807d0 100644 ---- a/arch/mips/ralink/irq.c -+++ b/arch/mips/ralink/irq.c -@@ -31,6 +31,7 @@ - #define INTC_INT_GLOBAL BIT(31) - - #define RALINK_CPU_IRQ_INTC (MIPS_CPU_IRQ_BASE + 2) -+#define RALINK_CPU_IRQ_PCI (MIPS_CPU_IRQ_BASE + 4) - #define RALINK_CPU_IRQ_FE (MIPS_CPU_IRQ_BASE + 5) - #define RALINK_CPU_IRQ_WIFI (MIPS_CPU_IRQ_BASE + 6) - #define RALINK_CPU_IRQ_COUNTER (MIPS_CPU_IRQ_BASE + 7) -@@ -104,6 +105,9 @@ asmlinkage void plat_irq_dispatch(void) - else if (pending & STATUSF_IP6) - do_IRQ(RALINK_CPU_IRQ_WIFI); - -+ else if (pending & STATUSF_IP4) -+ do_IRQ(RALINK_CPU_IRQ_PCI); -+ - else if (pending & STATUSF_IP2) - do_IRQ(RALINK_CPU_IRQ_INTC); - --- -1.7.10.4 - |