Skip to content

Commit 0cfc36e

Browse files
lopsided98gregkh
authored andcommitted
serial: stm32: use port lock wrappers for break control
Commit 30e9458 ("serial: stm32: add support for break control") added another usage of the port lock, but was merged on the same day as c5d0666 ("serial: stm32: Use port lock wrappers"), therefore the latter did not update this usage to use the port lock wrappers. Fixes: c5d0666 ("serial: stm32: Use port lock wrappers") Cc: stable <stable@kernel.org> Signed-off-by: Ben Wolsieffer <ben.wolsieffer@hefring.com> Reviewed-by: John Ogness <john.ogness@linutronix.de> Link: https://lore.kernel.org/r/20241216145323.111612-1-ben.wolsieffer@hefring.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent fbd22c4 commit 0cfc36e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/tty/serial/stm32-usart.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,14 +1051,14 @@ static void stm32_usart_break_ctl(struct uart_port *port, int break_state)
10511051
const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs;
10521052
unsigned long flags;
10531053

1054-
spin_lock_irqsave(&port->lock, flags);
1054+
uart_port_lock_irqsave(port, &flags);
10551055

10561056
if (break_state)
10571057
stm32_usart_set_bits(port, ofs->rqr, USART_RQR_SBKRQ);
10581058
else
10591059
stm32_usart_clr_bits(port, ofs->rqr, USART_RQR_SBKRQ);
10601060

1061-
spin_unlock_irqrestore(&port->lock, flags);
1061+
uart_port_unlock_irqrestore(port, flags);
10621062
}
10631063

10641064
static int stm32_usart_startup(struct uart_port *port)

0 commit comments

Comments
 (0)