From: Hugo Villeneuve Date: Mon, 7 Aug 2023 21:45:56 +0000 (-0400) Subject: serial: sc16is7xx: add missing support for rs485 devicetree properties X-Git-Tag: v6.6.7~2018^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4a778303ea0fcabcaff974721477a5743e1f8ec;p=platform%2Fkernel%2Flinux-starfive.git serial: sc16is7xx: add missing support for rs485 devicetree properties Retrieve rs485 devicetree properties on registration of sc16is7xx ports in case they are attached to an rs485 transceiver. Signed-off-by: Hugo Villeneuve Reviewed-by: Ilpo Järvinen Reviewed-by: Lech Perczak Tested-by: Lech Perczak Link: https://lore.kernel.org/r/20230807214556.540627-7-hugo@hugovil.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c index cfc8895..f61d98e 100644 --- a/drivers/tty/serial/sc16is7xx.c +++ b/drivers/tty/serial/sc16is7xx.c @@ -1554,6 +1554,10 @@ static int sc16is7xx_probe(struct device *dev, goto out_ports; } + ret = uart_get_rs485_mode(&s->p[i].port); + if (ret) + goto out_ports; + /* Disable all interrupts */ sc16is7xx_port_write(&s->p[i].port, SC16IS7XX_IER_REG, 0); /* Disable TX/RX */