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

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/serial/
H A Dmcfserial.h51 int x_char; /* xon/xoff character */ member in struct:mcf_serial
H A D68328serial.h148 int x_char; /* xon/xoff character */ member in struct:m68k_serial
H A Dmux.c204 if(port->x_char) {
205 UART_PUT_CHAR(port, port->x_char);
207 port->x_char = 0;
H A Dv850e_uart.c256 if (port->x_char) {
257 tx_ch = port->x_char;
258 port->x_char = 0;
H A D68328serial.c329 if (info->x_char) {
331 uart->utx.b.txdata = info->x_char;
332 info->x_char = 0;
830 info->x_char = STOP_CHAR(tty);
843 if (info->x_char)
844 info->x_char = 0;
846 info->x_char = START_CHAR(tty);
1413 info->x_char = 0;
H A D21285.c132 if (port->x_char) {
133 *CSR_UARTDR = port->x_char;
135 port->x_char = 0;
H A Dclps711x.c156 if (port->x_char) {
157 clps_writel(port->x_char, UARTDR(port));
159 port->x_char = 0;
H A Duartlite.c108 if (port->x_char) {
109 writeb(port->x_char, port->membase + ULITE_TX);
110 port->x_char = 0;
H A Dmcfserial.c371 if (info->x_char) {
373 uartp[MCFUART_UTB] = info->x_char;
374 info->x_char = 0;
845 info->x_char = STOP_CHAR(tty);
864 if (info->x_char)
865 info->x_char = 0;
867 info->x_char = START_CHAR(tty);
1747 info->x_char = 0;
H A Dbfin_5xx.c221 if (uart->port.x_char) {
222 UART_PUT_CHAR(uart, uart->port.x_char);
224 uart->port.x_char = 0;
293 if (uart->port.x_char) {
294 UART_PUT_CHAR(uart, uart->port.x_char);
296 uart->port.x_char = 0;
H A Dip22zilog.c405 if (up->port.x_char) {
407 writeb(up->port.x_char, &channel->data);
412 up->port.x_char = 0;
602 if (port->x_char) {
603 writeb(port->x_char, &channel->data);
608 port->x_char = 0;
H A Ddz.c260 if (dport->port.x_char) { /* XON/XOFF chars */
261 dz_out(dport, DZ_TDR, dport->port.x_char);
263 dport->port.x_char = 0;
H A Dnetx-serial.c147 if (port->x_char) {
148 writel(port->x_char, port->membase + UART_DR);
150 port->x_char = 0;
H A Dpnx8xxx_uart.c241 if (sport->port.x_char) {
242 serial_out(sport, PNX8XXX_FIFO, sport->port.x_char);
244 sport->port.x_char = 0;
H A Dpxa.c171 if (up->port.x_char) {
172 serial_out(up, UART_TX, up->port.x_char);
174 up->port.x_char = 0;
H A Dserial_ks8695.c170 if (port->x_char) {
172 UART_PUT_CHAR(port, port->x_char);
174 port->x_char = 0;
H A Dserial_lh7a40x.c186 if (port->x_char) {
187 UR (port, UART_R_DATA) = port->x_char;
189 port->x_char = 0;
H A Dsunzilog.c497 if (up->port.x_char) {
499 writeb(up->port.x_char, &channel->data);
504 up->port.x_char = 0;
704 if (port->x_char) {
705 writeb(port->x_char, &channel->data);
710 port->x_char = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A DserialP.h63 int x_char; /* xon/xoff character */ member in struct:async_struct
H A Dserial167.h43 int x_char; /* to be pushed out ASAP */ member in struct:cyclades_port
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/hp/sim/
H A Dsimserial.c231 if (info->x_char) {
232 char c = info->x_char;
237 info->x_char = 0;
360 info->x_char = ch;
390 if (info->x_char)
391 info->x_char = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/4xx_io/
H A Dserial_sicc.c275 unsigned char x_char; member in struct:SICC_info
522 if (info->x_char) {
523 writeb(info->x_char, port->uart_base+ BL_SICC_TBR);
525 info->x_char = 0;
1013 info->x_char = ch;
1041 if (info->x_char)
1042 info->x_char = 0;
1203 if (info->x_char ||
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/tc/
H A Dzs.c416 if (info->x_char) {
418 write_zsdata(info->zs_channel, info->x_char);
419 info->x_char = 0;
961 info->x_char = STOP_CHAR(tty);
989 if (info->x_char)
990 info->x_char = 0;
992 info->x_char = START_CHAR(tty);
1754 info->x_char = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dvme_scc.c513 if (port->x_char) {
514 SCCwrite(TX_DATA_REG, port->x_char);
515 port->x_char = 0;
785 port->x_char = ch;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wan/
H A Dz85230.h341 int x_char; /* XON/XOF char */ member in struct:z8530_channel

Completed in 235 milliseconds

123