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

123

/drivers/tty/serial/
H A Dcrisv10.h89 int x_char; /* xon/xoff character */ member in struct:e100_serial
H A Dtilegx.c145 if (port->x_char) {
146 if (tilegx_putchar(context, port->x_char))
148 port->x_char = 0;
269 if (port->x_char) {
270 if (tilegx_putchar(context, port->x_char))
272 port->x_char = 0;
H A Dmux.c194 if(port->x_char) {
195 UART_PUT_CHAR(port, port->x_char);
197 port->x_char = 0;
H A D68328serial.c117 int x_char; /* xon/xoff character */ member in struct:m68k_serial
315 if (info->x_char) {
317 uart->utx.b.txdata = info->x_char;
318 info->x_char = 0;
777 info->x_char = STOP_CHAR(tty);
790 if (info->x_char)
791 info->x_char = 0;
793 info->x_char = START_CHAR(tty);
1192 info->x_char = 0;
H A D21285.c124 if (port->x_char) {
125 *CSR_UARTDR = port->x_char;
127 port->x_char = 0;
H A Daltera_jtaguart.c149 if (port->x_char) {
151 writel(port->x_char, port->membase + ALTERA_JTAGUART_DATA_REG);
152 port->x_char = 0;
H A Darc_uart.c169 if (unlikely(port->x_char)) {
170 UART_SET_DATA(port, port->x_char);
172 port->x_char = 0;
H A Dnwpserial.c267 if (port->x_char) {
268 nwpserial_putchar(up, up->port.x_char);
269 port->x_char = 0;
H A Dmeson_uart.c152 if (port->x_char) {
153 writel(port->x_char, port->membase + AML_UART_WFIFO);
155 port->x_char = 0;
566 port->x_char = 0;
H A Dip22zilog.c391 if (up->port.x_char) {
393 writeb(up->port.x_char, &channel->data);
398 up->port.x_char = 0;
596 if (port->x_char) {
597 writeb(port->x_char, &channel->data);
602 port->x_char = 0;
H A Daltera_uart.c246 if (port->x_char) {
248 altera_uart_writel(port, port->x_char, ALTERA_UART_TXDATA_REG);
249 port->x_char = 0;
H A Dapbuart.c133 if (port->x_char) {
134 UART_PUT_CHAR(port, port->x_char);
136 port->x_char = 0;
H A Dar933x_uart.c350 if (up->port.x_char) {
351 ar933x_uart_putc(up, up->port.x_char);
353 up->port.x_char = 0;
H A Dbcm63xx_uart.c318 if (port->x_char) {
319 bcm_uart_writel(port, port->x_char, UART_FIFO_REG);
321 port->x_char = 0;
H A Dclps711x.c158 if (port->x_char) {
159 writew(port->x_char, port->membase + UARTDR_OFFSET);
161 port->x_char = 0;
H A Dlantiq.c229 if (port->x_char) {
230 ltq_w8(port->x_char, port->membase + LTQ_ASC_TBUF);
232 port->x_char = 0;
H A Dlpc32xx_hs.c293 if (port->x_char) {
294 writel((u32)port->x_char, LPC32XX_HSUART_FIFO(port->membase));
296 port->x_char = 0;
H A Dmcf.c340 if (port->x_char) {
342 writeb(port->x_char, port->membase + MCFUART_UTB);
343 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.c250 if (sport->port.x_char) {
251 serial_out(sport, PNX8XXX_FIFO, sport->port.x_char);
253 sport->port.x_char = 0;
H A Dserial_ks8695.c214 if (port->x_char) {
216 UART_PUT_CHAR(port, port->x_char);
218 port->x_char = 0;
H A Dst-asc.c247 if ((txroom != 0) && port->x_char) {
248 c = port->x_char;
249 port->x_char = 0;
H A Duartlite.c172 if (port->x_char) {
173 uart_out32(port->x_char, ULITE_TX, port);
174 port->x_char = 0;
H A Dvt8500_serial.c209 if (port->x_char) {
210 writeb(port->x_char, port->membase + VT8500_TXFIFO);
212 port->x_char = 0;
/drivers/mmc/card/
H A Dsdio_uart.c82 unsigned char x_char; member in struct:sdio_uart_port
438 if (port->x_char) {
439 sdio_out(port, UART_TX, port->x_char);
441 port->x_char = 0;
822 port->x_char = ch;
843 port->x_char = STOP_CHAR(tty);
865 if (port->x_char) {
866 port->x_char = 0;
868 port->x_char = START_CHAR(tty);

Completed in 243 milliseconds

123