diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-01-12 12:29:53 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-01-12 12:29:53 +0000 |
commit | ef75e6c71aba8075493a8ae216332489a89b2bb9 (patch) | |
tree | 0502587c153213144d85448de20e29f832d5bfda /target/linux/malta/patches-3.6/001-MIPS-fix-CBUS-UART-irq.patch | |
parent | 3d057de4db395102e1589d2ae5df295a3cee00f8 (diff) | |
download | upstream-ef75e6c71aba8075493a8ae216332489a89b2bb9.tar.gz upstream-ef75e6c71aba8075493a8ae216332489a89b2bb9.tar.bz2 upstream-ef75e6c71aba8075493a8ae216332489a89b2bb9.zip |
malta: remove 3.6 support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35118
Diffstat (limited to 'target/linux/malta/patches-3.6/001-MIPS-fix-CBUS-UART-irq.patch')
-rw-r--r-- | target/linux/malta/patches-3.6/001-MIPS-fix-CBUS-UART-irq.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/target/linux/malta/patches-3.6/001-MIPS-fix-CBUS-UART-irq.patch b/target/linux/malta/patches-3.6/001-MIPS-fix-CBUS-UART-irq.patch deleted file mode 100644 index 347dcc0d1f..0000000000 --- a/target/linux/malta/patches-3.6/001-MIPS-fix-CBUS-UART-irq.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 132a7253fe87b1f4d71aab5abee3108a793234db Mon Sep 17 00:00:00 2001 -From: Ralf Baechle <ralf@linux-mips.org> -Date: Tue, 13 Nov 2012 10:41:50 +0100 -Subject: [PATCH] MIPS: Malta: Fix interupt number of CBUS UART. - -The CBUS UART's interrupt number was wrong conflicting with the interrupt -being tied to the Intel PIIX4. Since the PIIX4's interrupt is registered -before the CBUS UART which is not being used on most systems this would -not be noticed. - -Attempts to open the ttyS2 CBUS UART would result in: - -genirq: Flags mismatch irq 18. 00000000 (serial) vs. 00010000 (XT-PIC cascade) -serial_link_irq_chain: request failed: -16 for irq: 18 - -Qemu was written to match the kernel so will need to be fixed also. - -Signed-off-by: Ralf Baechle <ralf@linux-mips.org> -(cherry picked from commit fe2ccd4dcebd3c5e264af1705bb9b659972418cc) ---- - arch/mips/mti-malta/malta-platform.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/arch/mips/mti-malta/malta-platform.c -+++ b/arch/mips/mti-malta/malta-platform.c -@@ -48,7 +48,7 @@ static struct plat_serial8250_port uart8 - SMC_PORT(0x2F8, 3), - { - .mapbase = 0x1f000900, /* The CBUS UART */ -- .irq = MIPS_CPU_IRQ_BASE + 2, -+ .irq = MIPS_CPU_IRQ_BASE + MIPSCPU_INT_MB2, - .uartclk = 3686400, /* Twice the usual clk! */ - .iotype = UPIO_MEM32, - .flags = CBUS_UART_FLAGS, |