diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-07-16 16:52:46 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-20 20:12:34 -0400 |
commit | 9afd561acabe5059ff16d163a176e2350269aba5 (patch) | |
tree | fdc8dd1e97c2aff22eb708c8695be58c21b97af9 | |
parent | 6bb0e3a59a089e23eecc0af3b6f6012b2a9affba (diff) |
Subject: [PATCH 2/2] atmel_serial: Implement flush_buffer() hook
Avoid dumping garbage to the serial port when the tty is flushed. This
tends to happen when rebooting from a serial console.
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/serial/atmel_serial.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c index 6aeef22bd203..c17fcd6085f3 100644 --- a/drivers/serial/atmel_serial.c +++ b/drivers/serial/atmel_serial.c | |||
@@ -956,6 +956,20 @@ static void atmel_shutdown(struct uart_port *port) | |||
956 | } | 956 | } |
957 | 957 | ||
958 | /* | 958 | /* |
959 | * Flush any TX data submitted for DMA. Called when the TX circular | ||
960 | * buffer is reset. | ||
961 | */ | ||
962 | static void atmel_flush_buffer(struct uart_port *port) | ||
963 | { | ||
964 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | ||
965 | |||
966 | if (atmel_use_dma_tx(port)) { | ||
967 | UART_PUT_TCR(port, 0); | ||
968 | atmel_port->pdc_tx.ofs = 0; | ||
969 | } | ||
970 | } | ||
971 | |||
972 | /* | ||
959 | * Power / Clock management. | 973 | * Power / Clock management. |
960 | */ | 974 | */ |
961 | static void atmel_serial_pm(struct uart_port *port, unsigned int state, | 975 | static void atmel_serial_pm(struct uart_port *port, unsigned int state, |
@@ -1189,6 +1203,7 @@ static struct uart_ops atmel_pops = { | |||
1189 | .break_ctl = atmel_break_ctl, | 1203 | .break_ctl = atmel_break_ctl, |
1190 | .startup = atmel_startup, | 1204 | .startup = atmel_startup, |
1191 | .shutdown = atmel_shutdown, | 1205 | .shutdown = atmel_shutdown, |
1206 | .flush_buffer = atmel_flush_buffer, | ||
1192 | .set_termios = atmel_set_termios, | 1207 | .set_termios = atmel_set_termios, |
1193 | .type = atmel_type, | 1208 | .type = atmel_type, |
1194 | .release_port = atmel_release_port, | 1209 | .release_port = atmel_release_port, |