mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 09:06:44 +07:00
serial: bfin_5xx: fix typo in IER check
This most likely won't cause problems on systems as people don't typically enable GPIO RTS/CTS if they don't actually use it. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ca3e442e8d
commit
e59e2bd9e8
@ -797,7 +797,7 @@ static void bfin_serial_shutdown(struct uart_port *port)
|
||||
gpio_free(uart->rts_pin);
|
||||
#endif
|
||||
#ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
|
||||
if (UART_GET_IER(uart) && EDSSI)
|
||||
if (UART_GET_IER(uart) & EDSSI)
|
||||
free_irq(uart->status_irq, uart);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user