Skip to content

Commit

Permalink
serial: st-asc: Avoid using irq_wake flag
Browse files Browse the repository at this point in the history
There is no need to duplicate a flag which IRQ core takes care of.

Replace custom flag by IRQ core API that retrieves its state.

Cc: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Andy Shevchenko authored and Greg Kroah-Hartman committed Aug 28, 2017
1 parent 3d6bcdd commit 7b8a035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/tty/serial/st-asc.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ static void asc_receive_chars(struct uart_port *port)
if (mode == ASC_CTL_MODE_8BIT || mode == ASC_CTL_MODE_8BIT_PAR)
ignore_pe = true;

if (port->irq_wake)
if (irqd_is_wakeup_set(irq_get_irq_data(port->irq)))
pm_wakeup_event(tport->tty->dev, 0);

while ((status = asc_in(port, ASC_STA)) & ASC_STA_RBF) {
Expand Down

0 comments on commit 7b8a035

Please sign in to comment.