Searched refs:x_char (Results 26 - 50 of 74) sorted by relevance

123

/drivers/tty/serial/
H A Dbfin_uart.c335 if (uart->port.x_char) {
336 UART_PUT_CHAR(uart, uart->port.x_char);
338 uart->port.x_char = 0;
387 if (uart->port.x_char) {
388 UART_PUT_CHAR(uart, uart->port.x_char);
390 uart->port.x_char = 0;
H A Defm32-uart.c141 if (port->x_char) {
143 efm32_uart_write32(efm_port, port->x_char,
145 port->x_char = 0;
160 if (!port->x_char && uart_circ_empty(xmit) &&
H A Dpmac_zilog.c415 if (uap->port.x_char) {
417 write_zsdata(uap, uap->port.x_char);
420 uap->port.x_char = 0;
648 if (port->x_char) {
649 write_zsdata(uap, port->x_char);
652 port->x_char = 0;
H A Dsunzilog.c489 if (up->port.x_char) {
491 writeb(up->port.x_char, &channel->data);
496 up->port.x_char = 0;
696 if (port->x_char) {
697 writeb(port->x_char, &channel->data);
702 port->x_char = 0;
H A Damba-pl010.c175 if (uap->port.x_char) {
176 writel(uap->port.x_char, uap->port.membase + UART01x_DR);
178 uap->port.x_char = 0;
H A Dbfin_sport_uart.c337 if (up->port.x_char) {
338 tx_one_byte(up, up->port.x_char);
340 up->port.x_char = 0;
H A Ddz.c266 if (dport->port.x_char) { /* XON/XOFF chars */
267 dz_out(dport, DZ_TDR, dport->port.x_char);
269 dport->port.x_char = 0;
H A Dm32r_sio.c384 if (up->port.x_char) {
386 serial_out(up, UART_TX, up->port.x_char);
389 up->port.x_char = 0;
H A Dmax3100.c294 if (s->port.x_char) {
295 tx = s->port.x_char;
297 s->port.x_char = 0;
H A Dmsm_serial.c231 if (port->x_char) {
235 iowrite8_rep(tf, &port->x_char, 1);
237 port->x_char = 0;
H A Dmxs-auart.c286 if (s->port.x_char) {
288 writel(s->port.x_char,
290 s->port.x_char = 0;
H A Dpxa.c188 if (up->port.x_char) {
189 serial_out(up, UART_TX, up->port.x_char);
191 up->port.x_char = 0;
H A Drp2.c446 if (up->port.x_char) {
447 writeb(up->port.x_char, up->base + RP2_DATA_BYTE);
448 up->port.x_char = 0;
H A Dsa1100.c245 if (sport->port.x_char) {
246 UART_PUT_CHAR(sport, sport->port.x_char);
248 sport->port.x_char = 0;
H A Dsb1250-duart.c398 if (sport->port.x_char) {
399 write_sbdchn(sport, R_DUART_TX_HOLD, sport->port.x_char);
401 sport->port.x_char = 0;
H A Dsc16is7xx.c557 if (unlikely(port->x_char)) {
558 sc16is7xx_port_write(port, SC16IS7XX_THR_REG, port->x_char);
560 port->x_char = 0;
H A Dsccnxp.c415 if (unlikely(port->x_char)) {
416 sccnxp_port_write(port, SCCNXP_THR_REG, port->x_char);
418 port->x_char = 0;
H A Dvr41xx_siu.c397 if (port->x_char) {
398 siu_write(port, UART_TX, port->x_char);
400 port->x_char = 0;
H A Damba-pl011.c624 if (!uap->port.x_char) {
662 writew(uap->port.x_char, uap->port.membase + UART01x_DR);
664 uap->port.x_char = 0;
1246 if (uap->port.x_char) {
1247 writew(uap->port.x_char, uap->port.membase + UART01x_DR);
1249 uap->port.x_char = 0;
H A Dmax310x.c652 if (unlikely(port->x_char)) {
653 max310x_port_write(port, MAX310X_THR_REG, port->x_char);
655 port->x_char = 0;
H A Dmfd.c538 if (up->port.x_char) {
539 serial_out(up, UART_TX, up->port.x_char);
541 up->port.x_char = 0;
/drivers/net/wan/
H A Dz85230.h340 int x_char; /* XON/XOF char */ member in struct:z8530_channel
/drivers/tty/
H A Damiserial.c109 int x_char; /* xon/xoff character */ member in struct:serial_state
342 if (info->x_char) {
343 custom.serdat = info->x_char | 0x100;
346 info->x_char = 0;
937 info->x_char = ch;
1004 if (info->x_char)
1005 info->x_char = 0;
H A Dmxser.c238 int x_char; /* xon/xoff character */ member in struct:mxser_port
1860 info->x_char = STOP_CHAR(tty);
1889 if (info->x_char)
1890 info->x_char = 0;
1896 info->x_char = START_CHAR(tty);
2167 if (port->x_char) {
2168 outb(port->x_char, port->ioaddr + UART_TX);
2169 port->x_char = 0;
/drivers/tty/serial/cpm_uart/
H A Dcpm_uart_core.c682 if (port->x_char) {
688 *p++ = port->x_char;
700 port->x_char = 0;

Completed in 347 milliseconds

123