Symbol: tty_get_char_size
drivers/mmc/core/sdio_uart.c
252
cval = UART_LCR_WLEN(tty_get_char_size(termios->c_cflag));
drivers/staging/greybus/uart.c
496
newline.data_bits = tty_get_char_size(termios->c_cflag);
drivers/tty/mxser.c
584
cval = UART_LCR_WLEN(tty_get_char_size(tty->termios.c_cflag));
drivers/tty/serial/8250/8250_omap.c
370
cval = UART_LCR_WLEN(tty_get_char_size(termios->c_cflag));
drivers/tty/serial/8250/8250_port.c
2497
u8 lcr = UART_LCR_WLEN(tty_get_char_size(c_cflag));
drivers/tty/serial/cpm_uart.c
601
unsigned int bits = tty_get_char_size(termios->c_cflag);
drivers/tty/serial/jsm/jsm_cls.c
718
lcr |= UART_LCR_WLEN(tty_get_char_size(ch->ch_c_cflag));
drivers/tty/serial/jsm/jsm_neo.c
994
lcr |= UART_LCR_WLEN(tty_get_char_size(ch->ch_c_cflag));
drivers/tty/serial/ma35d1_serial.c
422
lcr = UART_LCR_WLEN(tty_get_char_size(termios->c_cflag));
drivers/tty/serial/mxs-auart.c
954
ctrl |= AUART_LINECTRL_WLEN(tty_get_char_size(cflag));
drivers/tty/serial/omap-serial.c
784
cval = UART_LCR_WLEN(tty_get_char_size(termios->c_cflag));
drivers/tty/serial/pxa.c
411
cval = UART_LCR_WLEN(tty_get_char_size(termios->c_cflag));
drivers/tty/serial/qcom_geni_serial.c
1396
bits_per_char = tty_get_char_size(termios->c_cflag);
drivers/tty/serial/serial-tegra.c
1331
char_bits = tty_get_char_size(termios->c_cflag);
drivers/tty/serial/stm32-usart.c
1210
bits = tty_get_char_size(cflag);
drivers/tty/synclink_gt.c
2461
info->params.data_bits = tty_get_char_size(cflag);
drivers/tty/tty_ioctl.c
282
EXPORT_SYMBOL_GPL(tty_get_char_size);
drivers/tty/tty_ioctl.c
296
unsigned char bits = 2 + tty_get_char_size(cflag);
drivers/usb/class/cdc-acm.c
1104
newline.bDataBits = tty_get_char_size(termios->c_cflag);
drivers/usb/serial/ark3116.c
203
lcr = UART_LCR_WLEN(tty_get_char_size(cflag));
drivers/usb/serial/belkin_sa.c
360
urb_value = BELKIN_SA_DATA_BITS(tty_get_char_size(cflag));
drivers/usb/serial/cypress_m8.c
889
data_bits = tty_get_char_size(cflag);
drivers/usb/serial/f81232.c
650
new_lcr |= UART_LCR_WLEN(tty_get_char_size(tty->termios.c_cflag));
drivers/usb/serial/f81534.c
977
new_lcr |= UART_LCR_WLEN(tty_get_char_size(tty->termios.c_cflag));
drivers/usb/serial/mos7720.c
1389
lData = UART_LCR_WLEN(tty_get_char_size(cflag));
drivers/usb/serial/pl2303.c
851
buf[6] = tty_get_char_size(tty->termios.c_cflag);
drivers/usb/serial/quatech2.c
276
new_lcr |= UART_LCR_WLEN(tty_get_char_size(cflag));
drivers/usb/serial/ssu100.c
234
urb_value |= UART_LCR_WLEN(tty_get_char_size(cflag));
drivers/usb/serial/whiteheat.c
623
port_settings.bits = tty_get_char_size(cflag);
include/linux/tty.h
445
unsigned char tty_get_char_size(unsigned int cflag);