Searched refs:x_char (Results 1 - 25 of 65) sorted by relevance

123

/drivers/tty/serial/
H A D68328serial.h148 int x_char; /* xon/xoff character */ member in struct:m68k_serial
H A Dcrisv10.h94 int x_char; /* xon/xoff character */ member in struct:e100_serial
H A Dmux.c204 if(port->x_char) {
205 UART_PUT_CHAR(port, port->x_char);
207 port->x_char = 0;
H A D68328serial.c308 if (info->x_char) {
310 uart->utx.b.txdata = info->x_char;
311 info->x_char = 0;
770 info->x_char = STOP_CHAR(tty);
783 if (info->x_char)
784 info->x_char = 0;
786 info->x_char = START_CHAR(tty);
1283 info->x_char = 0;
H A D21285.c129 if (port->x_char) {
130 *CSR_UARTDR = port->x_char;
132 port->x_char = 0;
H A Daltera_jtaguart.c151 if (port->x_char) {
153 writel(port->x_char, port->membase + ALTERA_JTAGUART_DATA_REG);
154 port->x_char = 0;
H A Dclps711x.c151 if (port->x_char) {
152 clps_writel(port->x_char, UARTDR(port));
154 port->x_char = 0;
H A Dnwpserial.c268 if (port->x_char) {
269 nwpserial_putchar(up, up->port.x_char);
270 port->x_char = 0;
H A Dip22zilog.c396 if (up->port.x_char) {
398 writeb(up->port.x_char, &channel->data);
403 up->port.x_char = 0;
602 if (port->x_char) {
603 writeb(port->x_char, &channel->data);
608 port->x_char = 0;
H A Daltera_uart.c242 if (port->x_char) {
244 altera_uart_writel(port, port->x_char, ALTERA_UART_TXDATA_REG);
245 port->x_char = 0;
H A Dapbuart.c137 if (port->x_char) {
138 UART_PUT_CHAR(port, port->x_char);
140 port->x_char = 0;
H A Dar933x_uart.c283 if (up->port.x_char) {
284 ar933x_uart_putc(up, up->port.x_char);
286 up->port.x_char = 0;
H A Dbcm63xx_uart.c319 if (port->x_char) {
320 bcm_uart_writel(port, port->x_char, UART_FIFO_REG);
322 port->x_char = 0;
H A Dlantiq.c232 if (port->x_char) {
233 ltq_w8(port->x_char, port->membase + LTQ_ASC_TBUF);
235 port->x_char = 0;
H A Dmcf.c323 if (port->x_char) {
325 writeb(port->x_char, port->membase + MCFUART_UTB);
326 port->x_char = 0;
H A Dmxs-auart.c136 if (s->port.x_char) {
138 writel(s->port.x_char,
140 s->port.x_char = 0;
H A Dnetx-serial.c143 if (port->x_char) {
144 writel(port->x_char, port->membase + UART_DR);
146 port->x_char = 0;
H A Dpnx8xxx_uart.c248 if (sport->port.x_char) {
249 serial_out(sport, PNX8XXX_FIFO, sport->port.x_char);
251 sport->port.x_char = 0;
H A Dserial_ks8695.c215 if (port->x_char) {
217 UART_PUT_CHAR(port, port->x_char);
219 port->x_char = 0;
H A Duartlite.c124 if (port->x_char) {
125 iowrite32be(port->x_char, port->membase + ULITE_TX);
126 port->x_char = 0;
H A Dvt8500_serial.c178 if (port->x_char) {
179 writeb(port->x_char, port->membase + VT8500_TXFIFO);
181 port->x_char = 0;
H A Dbfin_uart.c353 if (uart->port.x_char) {
354 UART_PUT_CHAR(uart, uart->port.x_char);
356 uart->port.x_char = 0;
405 if (uart->port.x_char) {
406 UART_PUT_CHAR(uart, uart->port.x_char);
408 uart->port.x_char = 0;
H A Defm32-uart.c140 if (port->x_char) {
142 efm32_uart_write32(efm_port, port->x_char,
144 port->x_char = 0;
159 if (!port->x_char && uart_circ_empty(xmit) &&
/drivers/mmc/card/
H A Dsdio_uart.c84 unsigned char x_char; member in struct:sdio_uart_port
459 if (port->x_char) {
460 sdio_out(port, UART_TX, port->x_char);
462 port->x_char = 0;
839 port->x_char = ch;
860 port->x_char = STOP_CHAR(tty);
882 if (port->x_char) {
883 port->x_char = 0;
885 port->x_char = START_CHAR(tty);
/drivers/net/wan/
H A Dz85230.h340 int x_char; /* XON/XOF char */ member in struct:z8530_channel

Completed in 942 milliseconds

123