From 8f817693d99cdb194e35ec93fdf8d2254f5471ad Mon Sep 17 00:00:00 2001 From: Phil Elwell Date: Thu, 18 Jan 2024 11:08:03 +0000 Subject: [PATCH] ARM: pl011: Add rs485 to the RP1 support pl011_axi_probe, added for RP1 support, lacks the rs485 additions that appeared during its development. Signed-off-by: Phil Elwell --- drivers/tty/serial/amba-pl011.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c index c8bfa09..2133edd 100644 --- a/drivers/tty/serial/amba-pl011.c +++ b/drivers/tty/serial/amba-pl011.c @@ -3033,6 +3033,8 @@ static int pl011_axi_probe(struct platform_device *pdev) uap->port.iotype = vendor->access_32b ? UPIO_MEM32 : UPIO_MEM; uap->port.irq = irq; uap->port.ops = &amba_pl011_pops; + uap->port.rs485_config = pl011_rs485_config; + uap->port.rs485_supported = pl011_rs485_supported; snprintf(uap->type, sizeof(uap->type), "PL011 AXI"); -- 2.7.4