summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLizhe <sensor1010@163.com>2024-01-12 05:39:23 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-01-27 18:40:17 -0800
commite9e873eadced9389b819685a762c9892500f12d0 (patch)
treea12c1ec25341968077e24553966e827353aa3dfa
parentfed99212acae832607817b24fa589f8aaf03103f (diff)
downloadlinux-stable-e9e873eadced9389b819685a762c9892500f12d0.tar.gz
linux-stable-e9e873eadced9389b819685a762c9892500f12d0.tar.bz2
linux-stable-e9e873eadced9389b819685a762c9892500f12d0.zip
serial: linflexuart: Remove redundant uart type assignment
In linflex_config_port() the member variable type will be assigned again. Remove redundant uart type assignment from linflex_probe(). Signed-off-by: Lizhe <sensor1010@163.com> Link: https://lore.kernel.org/r/20240112133923.190852-1-sensor1010@163.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/fsl_linflexuart.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/serial/fsl_linflexuart.c b/drivers/tty/serial/fsl_linflexuart.c
index 52c87876a88d..5426322b5f0c 100644
--- a/drivers/tty/serial/fsl_linflexuart.c
+++ b/drivers/tty/serial/fsl_linflexuart.c
@@ -837,7 +837,6 @@ static int linflex_probe(struct platform_device *pdev)
return ret;
sport->dev = &pdev->dev;
- sport->type = PORT_LINFLEXUART;
sport->iotype = UPIO_MEM;
sport->irq = ret;
sport->ops = &linflex_pops;