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
1 changed files with 1 additions and 1 deletions
|
@ -797,7 +797,7 @@ static void bfin_serial_shutdown(struct uart_port *port)
|
||||||
gpio_free(uart->rts_pin);
|
gpio_free(uart->rts_pin);
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
|
#ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS
|
||||||
if (UART_GET_IER(uart) && EDSSI)
|
if (UART_GET_IER(uart) & EDSSI)
|
||||||
free_irq(uart->status_irq, uart);
|
free_irq(uart->status_irq, uart);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue