From: Samuel Iglesias Gonsalvez Date: Mon, 10 Dec 2012 10:50:06 +0000 (+0100) Subject: ipack/devices/ipoctal: remove redundant tty_flip_buffer_push() X-Git-Tag: v3.9-rc1~124^2~116 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b06073f963b7b00a628e58e87d02028e2c9e430d;p=platform%2Fkernel%2Flinux-3.10.git ipack/devices/ipoctal: remove redundant tty_flip_buffer_push() The function is already called in ipoctal_irq_rx() Signed-off-by: Samuel Iglesias Gonsalvez Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/ipack/devices/ipoctal.c b/drivers/ipack/devices/ipoctal.c index 5ce2c4c..34fcfce 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); }