Symbol: UART_LCR_SBC
drivers/mmc/core/sdio_uart.c
679
port->lcr &= ~UART_LCR_SBC;
drivers/mmc/core/sdio_uart.c
906
port->lcr |= UART_LCR_SBC;
drivers/mmc/core/sdio_uart.c
908
port->lcr &= ~UART_LCR_SBC;
drivers/tty/mxser.c
1421
lcr |= UART_LCR_SBC;
drivers/tty/mxser.c
1423
lcr &= ~UART_LCR_SBC;
drivers/tty/serial/8250/8250_omap.c
798
if (up->lcr & UART_LCR_SBC)
drivers/tty/serial/8250/8250_omap.c
799
serial_out(up, UART_LCR, up->lcr & ~UART_LCR_SBC);
drivers/tty/serial/8250/8250_port.c
1949
up->lcr |= UART_LCR_SBC;
drivers/tty/serial/8250/8250_port.c
1951
up->lcr &= ~UART_LCR_SBC;
drivers/tty/serial/8250/8250_port.c
2390
lcr &= ~UART_LCR_SBC;
drivers/tty/serial/jsm/jsm_cls.c
315
writeb((temp & ~UART_LCR_SBC), &ch->ch_cls_uart->lcr);
drivers/tty/serial/jsm/jsm_cls.c
878
writeb((temp | UART_LCR_SBC), &ch->ch_cls_uart->lcr);
drivers/tty/serial/jsm/jsm_neo.c
1312
writeb((temp | UART_LCR_SBC), &ch->ch_neo_uart->lcr);
drivers/tty/serial/jsm/jsm_neo.c
678
writeb((temp & ~UART_LCR_SBC), &ch->ch_neo_uart->lcr);
drivers/tty/serial/omap-serial.c
652
up->lcr |= UART_LCR_SBC;
drivers/tty/serial/omap-serial.c
654
up->lcr &= ~UART_LCR_SBC;
drivers/tty/serial/omap-serial.c
753
serial_out(up, UART_LCR, serial_in(up, UART_LCR) & ~UART_LCR_SBC);
drivers/tty/serial/pxa.c
300
up->lcr |= UART_LCR_SBC;
drivers/tty/serial/pxa.c
302
up->lcr &= ~UART_LCR_SBC;
drivers/tty/serial/pxa.c
394
serial_out(up, UART_LCR, serial_in(up, UART_LCR) & ~UART_LCR_SBC);
drivers/tty/serial/serial-tegra.c
258
lcr |= UART_LCR_SBC;
drivers/tty/serial/serial-tegra.c
260
lcr &= ~UART_LCR_SBC;
drivers/tty/serial/sunsu.c
581
up->lcr |= UART_LCR_SBC;
drivers/tty/serial/sunsu.c
583
up->lcr &= ~UART_LCR_SBC;
drivers/tty/serial/sunsu.c
725
serial_out(up, UART_LCR, serial_in(up, UART_LCR) & ~UART_LCR_SBC);
drivers/usb/serial/ark3116.c
243
lcr |= (priv->lcr & UART_LCR_SBC);
drivers/usb/serial/ark3116.c
446
priv->lcr |= UART_LCR_SBC;
drivers/usb/serial/ark3116.c
448
priv->lcr &= ~UART_LCR_SBC;
drivers/usb/serial/f81232.c
459
priv->shadow_lcr |= UART_LCR_SBC;
drivers/usb/serial/f81232.c
461
priv->shadow_lcr &= ~UART_LCR_SBC;
drivers/usb/serial/f81232.c
654
new_lcr |= (priv->shadow_lcr & UART_LCR_SBC);
drivers/usb/serial/f81534.c
644
value = lcr | (port_priv->shadow_lcr & UART_LCR_SBC);
drivers/usb/serial/f81534.c
668
port_priv->shadow_lcr |= UART_LCR_SBC;
drivers/usb/serial/f81534.c
670
port_priv->shadow_lcr &= ~UART_LCR_SBC;
drivers/usb/serial/mos7720.c
1013
data = mos7720_port->shadowLCR | UART_LCR_SBC;
drivers/usb/serial/mos7720.c
1015
data = mos7720_port->shadowLCR & ~UART_LCR_SBC;