mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 16:50:53 +07:00
sdio: add default c_ispeed/c_ospeed values to sdio_uart driver
Note that the default baudrate is 4800 instead of 9600 as a convenience because that's what GPS devices want which is still the main use for this driver. Signed-off-by: Nicolas Pitre <npitre@mvista.com> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
parent
7806cdb40f
commit
2ba30eedec
@ -1106,6 +1106,8 @@ static int __init sdio_uart_init(void)
|
||||
tty_drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
|
||||
tty_drv->init_termios = tty_std_termios;
|
||||
tty_drv->init_termios.c_cflag = B4800 | CS8 | CREAD | HUPCL | CLOCAL;
|
||||
tty_drv->init_termios.c_ispeed = 4800;
|
||||
tty_drv->init_termios.c_ospeed = 4800;
|
||||
tty_set_operations(tty_drv, &sdio_uart_ops);
|
||||
|
||||
ret = tty_register_driver(tty_drv);
|
||||
|
Loading…
Reference in New Issue
Block a user