From: Greg Ungerer Date: Tue, 7 Feb 2006 23:19:17 +0000 (+1000) Subject: [PATCH] m68knommu: use tty_schedule_flip() in 68328serial.c X-Git-Tag: v2.6.16-rc3~100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8e63e66b4cd066fe6c2d962460e286c2a61d3fe8;p=platform%2Fupstream%2Fkernel-adaptation-pc.git [PATCH] m68knommu: use tty_schedule_flip() in 68328serial.c Use the new tty_schedule_flip() instead of the original direct schedule_work of the flip buffer. Signed-off-by: Greg Ungerer Signed-off-by: Linus Torvalds --- diff --git a/drivers/serial/68328serial.c b/drivers/serial/68328serial.c index 8cbf0fc..7f0f35a 100644 --- a/drivers/serial/68328serial.c +++ b/drivers/serial/68328serial.c @@ -332,7 +332,7 @@ static _INLINE_ void receive_chars(struct m68k_serial *info, struct pt_regs *reg * Make sure that we do not overflow the buffer */ if (tty_request_buffer_room(tty, 1) == 0) { - schedule_work(&tty->flip.work); + tty_schedule_flip(tty); return; } @@ -353,7 +353,7 @@ static _INLINE_ void receive_chars(struct m68k_serial *info, struct pt_regs *reg } while((rx = uart->urx.w) & URX_DATA_READY); #endif - schedule_work(&tty->flip.work); + tty_schedule_flip(tty); clear_and_exit: return;