tty/serial/imx: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Mon, 14 Dec 2020 13:37:19 +0000 (21:37 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Dec 2020 15:10:45 +0000 (16:10 +0100)
Replace a comma between expression statements by a semicolon.

Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201214133719.3893-1-zhengyongjun3@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/imx.c

index 425624d..8257597 100644 (file)
@@ -2248,7 +2248,7 @@ static int imx_uart_probe(struct platform_device *pdev)
        sport->port.dev = &pdev->dev;
        sport->port.mapbase = res->start;
        sport->port.membase = base;
-       sport->port.type = PORT_IMX,
+       sport->port.type = PORT_IMX;
        sport->port.iotype = UPIO_MEM;
        sport->port.irq = rxirq;
        sport->port.fifosize = 32;