summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-06-20 12:42:22 +0200
committerDenys Dmytriyenko <denys@ti.com>2012-07-31 15:45:32 -0400
commit646ff9d602da5053496ace4a0f9fcf1f7b5fae70 (patch)
treec8f49c988d7b100f11f17413fa95eb6f0fc00512 /recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch
parent7f25f16c99036ada0137d789a1b3d2f0f5e8a126 (diff)
downloadmeta-ti-646ff9d602da5053496ace4a0f9fcf1f7b5fae70.tar.gz
linux-ti33x-psp 3.2: update to 3.2.21, add libertas fixes
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch')
-rw-r--r--recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch
new file mode 100644
index 00000000..9c150815
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.19/0047-Add-missing-call-to-uart_update_timeout.patch
@@ -0,0 +1,36 @@
1From 17e2d3e18d2042fb6fb23605752754deb87772c5 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Lothar=20Wa=C3=9Fmann?= <LW@KARO-electronics.de>
3Date: Thu, 3 May 2012 11:37:12 +0200
4Subject: [PATCH 047/117] Add missing call to uart_update_timeout()
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9commit 8b979f7c6bf13a57e7b6002f1175312a44773960 upstream.
10
11This patch fixes a problem reported here:
12http://article.gmane.org/gmane.linux.ports.arm.kernel/155242/match=auart
13
14Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de>
15Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
17---
18 drivers/tty/serial/mxs-auart.c | 2 ++
19 1 file changed, 2 insertions(+)
20
21diff --git a/drivers/tty/serial/mxs-auart.c b/drivers/tty/serial/mxs-auart.c
22index 7e02c9c..5b3d063 100644
23--- a/drivers/tty/serial/mxs-auart.c
24+++ b/drivers/tty/serial/mxs-auart.c
25@@ -368,6 +368,8 @@ static void mxs_auart_settermios(struct uart_port *u,
26
27 writel(ctrl, u->membase + AUART_LINECTRL);
28 writel(ctrl2, u->membase + AUART_CTRL2);
29+
30+ uart_update_timeout(u, termios->c_cflag, baud);
31 }
32
33 static irqreturn_t mxs_auart_irq_handle(int irq, void *context)
34--
351.7.9.5
36