mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
serial: 8250_fintek: Disable delays for ports != 0
According to the datasheet, only the first port supports delay before send and delay after send. Reported-by: "Ji-Ze Hong (Peter Hong)" <hpeter@gmail.com> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7ecc77011c
commit
21c4e7f255
@ -212,6 +212,12 @@ static int fintek_8250_rs485_config(struct uart_port *port,
|
||||
rs485->flags &= SER_RS485_ENABLED | SER_RS485_RTS_ON_SEND |
|
||||
SER_RS485_RTS_AFTER_SEND;
|
||||
|
||||
/* Only the first port supports delays */
|
||||
if (pdata->index) {
|
||||
rs485->delay_rts_before_send = 0;
|
||||
rs485->delay_rts_after_send = 0;
|
||||
}
|
||||
|
||||
if (rs485->delay_rts_before_send) {
|
||||
rs485->delay_rts_before_send = 1;
|
||||
config |= TXW4C_IRA;
|
||||
|
Loading…
Reference in New Issue
Block a user