serial: pch: Don't initialize uart_port's spin_lock.
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Fri, 1 Mar 2024 21:45:29 +0000 (22:45 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 2 Mar 2024 21:06:22 +0000 (22:06 +0100)
commit38f3fc2e82a03d6dbb30c1fecacc630bd0ac9c28
treec8860aa06a66ea82cc0c2e8caea0842f81b6f65e
parentf8ff23ebce8c305383c8070e1ea3b08a69eb1e8d
serial: pch: Don't initialize uart_port's spin_lock.

There is no need to directly initialize the spinlock_t in struct
uart_port. The structure is later passed to uart_add_one_port() which
initialize the complete struct including the lock member.

Remove spin_lock_init() on uart_port's internal lock.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Link: https://lore.kernel.org/r/20240301215246.891055-17-bigeasy@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/pch_uart.c