taglinefilesource code
UART_LCR278drivers/char/console.ccomstat = serial_echo_inb(UART_LCR);
UART_LCR279drivers/char/console.cserial_echo_outb(comstat | UART_LCR_DLAB, UART_LCR);
UART_LCR282drivers/char/console.cserial_echo_outb(comstat, UART_LCR);
UART_LCR287drivers/char/console.cserial_echo_outb(0x03, UART_LCR); /* No parity, 8 data bits, 1 stop */
UART_LCR288drivers/char/console.cserial_echo_outb(0x83, UART_LCR); /* Access divisor latch */
UART_LCR291drivers/char/console.cserial_echo_outb(0x03, UART_LCR); /* Done with divisor */
UART_LCR992drivers/char/serial.cserial_outp(info, UART_LCR, UART_LCR_WLEN8);  /* reset DLAB */
UART_LCR1273drivers/char/serial.cserial_outp(info, UART_LCR, cval | UART_LCR_DLAB);  /* set DLAB */
UART_LCR1276drivers/char/serial.cserial_outp(info, UART_LCR, cval);    /* reset DLAB */
UART_LCR1709drivers/char/serial.cserial_out(info, UART_LCR, serial_inp(info, UART_LCR) | UART_LCR_SBC);
UART_LCR1711drivers/char/serial.cserial_out(info, UART_LCR, serial_inp(info, UART_LCR) & ~UART_LCR_SBC);
UART_LCR2603drivers/char/serial.cscratch2 = serial_in(info, UART_LCR);
UART_LCR2604drivers/char/serial.cserial_outp(info, UART_LCR, scratch2 | UART_LCR_DLAB);
UART_LCR2606drivers/char/serial.cserial_outp(info, UART_LCR, scratch2);
UART_LCR2621drivers/char/serial.cserial_outp(info, UART_LCR, scratch2 | UART_LCR_DLAB);
UART_LCR2629drivers/char/serial.cserial_outp(info, UART_LCR, scratch2);