From: Lino Sanfilippo <l.sanfilippo@xxxxxxxxxx> If the imx driver cannot support RS485 it sets the UARTS rs485_supported structure to NULL. But it still calls uart_get_rs485_mode() which may set the RS485_ENABLED flag. The flag however is evaluated by the serial core in uart_configure_port() at port startup and thus may lead to an attempt to configure RS485 even if it is not supported. Avoid this by calling uart_get_rs485_mode() only if RS485 is actually supported by the driver. Remove also a check for an error condition that is not possible any more now. Signed-off-by: Lino Sanfilippo <l.sanfilippo@xxxxxxxxxx> --- drivers/tty/serial/imx.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index edb2ec6a5567..87689abc21bd 100644 --- a/drivers/tty/serial/imx.c +++ b/drivers/tty/serial/imx.c @@ -2326,16 +2326,14 @@ static int imx_uart_probe(struct platform_device *pdev) return ret; } - ret = uart_get_rs485_mode(&sport->port); - if (ret) { - clk_disable_unprepare(sport->clk_ipg); - return ret; + if (sport->port.rs485_supported.flags & SER_RS485_ENABLED) { + ret = uart_get_rs485_mode(&sport->port); + if (ret) { + clk_disable_unprepare(sport->clk_ipg); + return ret; + } } - if (sport->port.rs485.flags & SER_RS485_ENABLED && - (!sport->have_rtscts && !sport->have_rtsgpio)) - dev_err(&pdev->dev, "no RTS control, disabling rs485\n"); - /* * If using the i.MX UART RTS/CTS control then the RTS (CTS_B) * signal cannot be set low during transmission in case the -- 2.40.1