On Wed, Oct 08, 2014 at 03:42:09PM +0300, Andy Shevchenko wrote: > Since we have the same check inside the function we may drop it away in > __dma_tx_complete(). > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> > Reviewed-by: Heikki Krogerus <heikki.krogerus@xxxxxxxxxxxxxxx> > --- > drivers/tty/serial/8250/8250_dma.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/tty/serial/8250/8250_dma.c b/drivers/tty/serial/8250/8250_dma.c > index 148ffe4..189ae3c 100644 > --- a/drivers/tty/serial/8250/8250_dma.c > +++ b/drivers/tty/serial/8250/8250_dma.c > @@ -36,8 +36,7 @@ static void __dma_tx_complete(void *param) > if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) > uart_write_wakeup(&p->port); > > - if (!uart_circ_empty(xmit) && !uart_tx_stopped(&p->port)) > - serial8250_tx_dma(p); > + serial8250_tx_dma(p); > > spin_unlock_irqrestore(&p->port.lock, flags); > } The code in this area has changed a lot now due to some dma work added to this driver. Can you look at my tty-testing branch of tty.git on git.kernel.org and see if this is still relevant now? If so, please refresh this patch and resend. thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html