summaryrefslogtreecommitdiff
path: root/drivers/tty/serial
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:41:00 -0800
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:41:00 -0800
commita70c0eab1897b2bb15d89f43267828682950842e (patch)
tree3b53319c93e0a73db1d8df5947e6ed621ccbb5df /drivers/tty/serial
parent83adb17804d48ead8fc91a8ab7dda81db13b9444 (diff)
parent7f9ed524778bcdcd8a51bdeab2095655fb57c431 (diff)
Merge branch 'korg-android-3.1' into korg-android+linux-tegra-3.1
Conflicts: arch/arm/mm/cache-l2x0.c drivers/misc/Kconfig drivers/misc/Makefile Signed-off-by: Dan Willemsen <dwillemsen@nvidia.com>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r--drivers/tty/serial/serial_core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c
index 25f3094ec743..23b1f46c9663 100644
--- a/drivers/tty/serial/serial_core.c
+++ b/drivers/tty/serial/serial_core.c
@@ -91,6 +91,9 @@ static void __uart_start(struct tty_struct *tty)
struct uart_state *state = tty->driver_data;
struct uart_port *port = state->uart_port;
+ if (port->ops->wake_peer)
+ port->ops->wake_peer(port);
+
if (!uart_circ_empty(&state->xmit) && state->xmit.buf &&
!tty->stopped && !tty->hw_stopped)
port->ops->start_tx(port);