sb1250-duart.c (f9cd49033b349b8be3bb1f01b39eed837853d880) sb1250-duart.c (2e124b4a390ca85325fae75764bef92f0547fa25)
1/*
2 * Support for the asynchronous serial interface (DUART) included
3 * in the BCM1250 and derived System-On-a-Chip (SOC) devices.
4 *
5 * Copyright (c) 2007 Maciej W. Rozycki
6 *
7 * Derived from drivers/char/sb1250_duart.c for which the following
8 * copyright applies:

--- 370 unchanged lines hidden (view full) ---

379 }
380
381 if (uart_handle_sysrq_char(uport, ch))
382 continue;
383
384 uart_insert_char(uport, status, M_DUART_OVRUN_ERR, ch, flag);
385 }
386
1/*
2 * Support for the asynchronous serial interface (DUART) included
3 * in the BCM1250 and derived System-On-a-Chip (SOC) devices.
4 *
5 * Copyright (c) 2007 Maciej W. Rozycki
6 *
7 * Derived from drivers/char/sb1250_duart.c for which the following
8 * copyright applies:

--- 370 unchanged lines hidden (view full) ---

379 }
380
381 if (uart_handle_sysrq_char(uport, ch))
382 continue;
383
384 uart_insert_char(uport, status, M_DUART_OVRUN_ERR, ch, flag);
385 }
386
387 tty_flip_buffer_push(uport->state->port.tty);
387 tty_flip_buffer_push(&uport->state->port);
388}
389
390static void sbd_transmit_chars(struct sbd_port *sport)
391{
392 struct uart_port *uport = &sport->port;
393 struct circ_buf *xmit = &sport->port.state->xmit;
394 unsigned int mask;
395 int stop_tx;

--- 581 unchanged lines hidden ---
388}
389
390static void sbd_transmit_chars(struct sbd_port *sport)
391{
392 struct uart_port *uport = &sport->port;
393 struct circ_buf *xmit = &sport->port.state->xmit;
394 unsigned int mask;
395 int stop_tx;

--- 581 unchanged lines hidden ---