]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ipack/devices/ipoctal: remove redundant tty_flip_buffer_push()
authorSamuel Iglesias Gonsalvez <siglesias@igalia.com>
Mon, 10 Dec 2012 10:50:06 +0000 (11:50 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Jan 2013 02:24:38 +0000 (18:24 -0800)
The function is already called in ipoctal_irq_rx()

Signed-off-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/ipack/devices/ipoctal.c

index 5ce2c4c5bb3231a164b1ae905ef37e5811f4c174..34fcfce0cdd9a8e8d7981dec284a573ae5a2be71 100644 (file)
@@ -216,7 +216,6 @@ static void ipoctal_irq_channel(struct ipoctal_channel *channel)
        if ((isr & channel->isr_tx_rdy_mask) && (sr & SR_TX_READY))
                ipoctal_irq_tx(channel);
 
-       tty_flip_buffer_push(tty);
        tty_kref_put(tty);
        spin_unlock(&channel->lock);
 }