serial m68k: put_char returns
Signed-off-by: Alan Cox <alan@redhat.com> Acked-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -995,10 +995,10 @@ static void rs_360_put_char(struct tty_struct *tty, unsigned char ch)
|
||||
volatile QUICC_BD *bdp;
|
||||
|
||||
if (serial_paranoia_check(info, tty->name, "rs_put_char"))
|
||||
return;
|
||||
return 0;
|
||||
|
||||
if (!tty)
|
||||
return;
|
||||
return 0;
|
||||
|
||||
bdp = info->tx_cur;
|
||||
while (bdp->status & BD_SC_READY);
|
||||
@@ -1016,6 +1016,7 @@ static void rs_360_put_char(struct tty_struct *tty, unsigned char ch)
|
||||
bdp++;
|
||||
|
||||
info->tx_cur = (QUICC_BD *)bdp;
|
||||
return 1;
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user