summaryrefslogtreecommitdiffstats
path: root/target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-04-21 17:16:40 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-04-21 17:16:40 +0000
commit8012e885db368f7a7e83ecc7d47cd16801f88479 (patch)
tree1c86a6a6ca48c7aab684dc379a7d31e6b88b16cb /target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch
parentc9ed69ae7ad7b1285f7153bf058becc381442f23 (diff)
omap24xx: remove 2.6.38 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31426 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch')
-rw-r--r--target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch b/target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch
deleted file mode 100644
index cf2e9ac25..000000000
--- a/target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/arch/arm/mach-omap2/serial.c
-+++ b/arch/arm/mach-omap2/serial.c
-@@ -660,6 +660,8 @@ static void serial_out_override(struct u
- }
- #endif
-
-+static struct omap_uart_state statebuf[4];
-+
- void __init omap_serial_early_init(void)
- {
- int i = 0;
-@@ -675,9 +677,9 @@ void __init omap_serial_early_init(void)
- if (!oh)
- break;
-
-- uart = kzalloc(sizeof(struct omap_uart_state), GFP_KERNEL);
-- if (WARN_ON(!uart))
-+ if (WARN_ON(i >= ARRAY_SIZE(statebuf)))
- return;
-+ uart = &statebuf[i];
-
- uart->oh = oh;
- uart->num = i++;