zs.c (f9cd49033b349b8be3bb1f01b39eed837853d880) | zs.c (2e124b4a390ca85325fae75764bef92f0547fa25) |
---|---|
1/* 2 * zs.c: Serial port driver for IOASIC DECstations. 3 * 4 * Derived from drivers/sbus/char/sunserial.c by Paul Mackerras. 5 * Derived from drivers/macintosh/macserial.c by Harald Koerfgen. 6 * 7 * DECstation changes 8 * Copyright (C) 1998-2000 Harald Koerfgen --- 589 unchanged lines hidden (view full) --- 598 } 599 600 if (uart_handle_sysrq_char(uport, ch)) 601 continue; 602 603 uart_insert_char(uport, status, Rx_OVR, ch, flag); 604 } 605 | 1/* 2 * zs.c: Serial port driver for IOASIC DECstations. 3 * 4 * Derived from drivers/sbus/char/sunserial.c by Paul Mackerras. 5 * Derived from drivers/macintosh/macserial.c by Harald Koerfgen. 6 * 7 * DECstation changes 8 * Copyright (C) 1998-2000 Harald Koerfgen --- 589 unchanged lines hidden (view full) --- 598 } 599 600 if (uart_handle_sysrq_char(uport, ch)) 601 continue; 602 603 uart_insert_char(uport, status, Rx_OVR, ch, flag); 604 } 605 |
606 tty_flip_buffer_push(uport->state->port.tty); | 606 tty_flip_buffer_push(&uport->state->port); |
607} 608 609static void zs_raw_transmit_chars(struct zs_port *zport) 610{ 611 struct circ_buf *xmit = &zport->port.state->xmit; 612 613 /* XON/XOFF chars. */ 614 if (zport->port.x_char) { --- 691 unchanged lines hidden --- | 607} 608 609static void zs_raw_transmit_chars(struct zs_port *zport) 610{ 611 struct circ_buf *xmit = &zport->port.state->xmit; 612 613 /* XON/XOFF chars. */ 614 if (zport->port.x_char) { --- 691 unchanged lines hidden --- |