diff options
author | Samuel Iglesias Gonsalvez <siglesias@igalia.com> | 2012-12-10 11:50:06 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-15 18:24:38 -0800 |
commit | b06073f963b7b00a628e58e87d02028e2c9e430d (patch) | |
tree | aa7cd6ae2289953ba49c6e0d4784cd26001b8f4f /drivers/ipack | |
parent | e7e664fd688a4a882ce571575ad721203f0cd584 (diff) | |
download | linux-b06073f963b7b00a628e58e87d02028e2c9e430d.tar.gz linux-b06073f963b7b00a628e58e87d02028e2c9e430d.tar.bz2 linux-b06073f963b7b00a628e58e87d02028e2c9e430d.zip |
ipack/devices/ipoctal: remove redundant tty_flip_buffer_push()
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>
Diffstat (limited to 'drivers/ipack')
-rw-r--r-- | drivers/ipack/devices/ipoctal.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ipack/devices/ipoctal.c b/drivers/ipack/devices/ipoctal.c index 5ce2c4c5bb32..34fcfce0cdd9 100644 --- a/drivers/ipack/devices/ipoctal.c +++ b/drivers/ipack/devices/ipoctal.c @@ -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); } |