projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4706df3
)
[SERIAL] Fix lh7a40x serial driver
author
Russell King
<rmk@dyn-67.arm.linux.org.uk>
Tue, 6 Sep 2005 22:14:59 +0000
(23:14 +0100)
committer
Russell King
<rmk+kernel@arm.linux.org.uk>
Tue, 6 Sep 2005 22:14:59 +0000
(23:14 +0100)
Missed updating two lh7a40xuart_stop_tx calls.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
drivers/serial/serial_lh7a40x.c
patch
|
blob
|
history
diff --git
a/drivers/serial/serial_lh7a40x.c
b/drivers/serial/serial_lh7a40x.c
index 32f808d157a15ee8a57f3a73645cc5024e054c90..8302376800c07da15b3c905a0b50baa3a8f9407b 100644
(file)
--- a/
drivers/serial/serial_lh7a40x.c
+++ b/
drivers/serial/serial_lh7a40x.c
@@
-207,7
+207,7
@@
static void lh7a40xuart_tx_chars (struct uart_port* port)
return;
}
if (uart_circ_empty (xmit) || uart_tx_stopped (port)) {
- lh7a40xuart_stop_tx (port
, 0
);
+ lh7a40xuart_stop_tx (port);
return;
}
@@
-229,7
+229,7
@@
static void lh7a40xuart_tx_chars (struct uart_port* port)
uart_write_wakeup (port);
if (uart_circ_empty (xmit))
- lh7a40xuart_stop_tx (port
, 0
);
+ lh7a40xuart_stop_tx (port);
}
static void lh7a40xuart_modem_status (struct uart_port* port)