diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-21 17:16:40 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-21 17:16:40 +0000 |
commit | 96b5d437d6c4fcaf39ef745d262fb176f1471fce (patch) | |
tree | 7253c59f3390ecc83cf13e6be9f0daaebc0c885f /target/linux/omap24xx/patches-2.6.38/830-omap2-serial-fixes.patch | |
parent | 76448ed5cf945b6b46de68693fa277ce27fc3eb8 (diff) | |
download | mtk-20170518-96b5d437d6c4fcaf39ef745d262fb176f1471fce.zip mtk-20170518-96b5d437d6c4fcaf39ef745d262fb176f1471fce.tar.gz mtk-20170518-96b5d437d6c4fcaf39ef745d262fb176f1471fce.tar.bz2 |
omap24xx: remove 2.6.38 support
SVN-Revision: 31426
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.patch | 23 |
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 cf2e9ac..0000000 --- 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++; |