mirror of
https://github.com/torvalds/linux.git
synced 2026-03-13 21:26:14 +01:00
serial: 8250_pericom: Use UART_LCR_DLAB
Use UART_LCR_DLAB instead of literal. Reviewed-by: Jiri Slaby <jirislaby@kernel.org> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Link: https://lore.kernel.org/r/20220613075736.12283-2-ilpo.jarvinen@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5db6db08c6
commit
d4b0617286
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ static void pericom_do_set_divisor(struct uart_port *port, unsigned int baud,
|
|||
struct uart_8250_port *up = up_to_u8250p(port);
|
||||
int lcr = serial_port_in(port, UART_LCR);
|
||||
|
||||
serial_port_out(port, UART_LCR, lcr | 0x80);
|
||||
serial_port_out(port, UART_LCR, lcr | UART_LCR_DLAB);
|
||||
serial_dl_write(up, divisor);
|
||||
serial_port_out(port, 2, 16 - scr);
|
||||
serial_port_out(port, UART_LCR, lcr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue