From: Jiri Slaby (SUSE) Date: Mon, 17 Mar 2025 07:00:40 +0000 (+0100) Subject: serial: remove redundant tty_port_link_device() X-Git-Tag: v6.15-rc1~47^2~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bfc467db60b76c30ca1f7f02088a219b6d5b6e8c;p=thirdparty%2Fkernel%2Flinux.git serial: remove redundant tty_port_link_device() The linking is done implicitly by tty_port_register_device_attr_serdev() few lines below. So drop this explicit tty_port_link_device(). Signed-off-by: Jiri Slaby (SUSE) Link: https://lore.kernel.org/r/20250317070046.24386-26-jirislaby@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c index 92f7e752f8620..c26a7cfa3778b 100644 --- a/drivers/tty/serial/serial_core.c +++ b/drivers/tty/serial/serial_core.c @@ -3156,7 +3156,6 @@ static int serial_core_add_one_port(struct uart_driver *drv, struct uart_port *u if (uport->cons && uport->dev) of_console_check(uport->dev->of_node, uport->cons->name, uport->line); - tty_port_link_device(port, drv->tty_driver, uport->line); uart_configure_port(drv, state, uport); port->console = uart_console(uport);