[PATCH] Fix RocketPort driver

Call "ld->receive_buf" using the start of the character and flag buffers,
rather than the ends.

Signed-off-by: Michal Ostrowski <mostrows@watson.ibm.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Michal Ostrowski 2006-02-03 03:03:37 -08:00 committed by Linus Torvalds
parent 826eeb53a6
commit 1989e20cc1
1 changed files with 1 additions and 1 deletions

View File

@ -433,7 +433,7 @@ static void rp_do_receive(struct r_port *info,
count += ToRecv;
}
/* Push the data up to the tty layer */
ld->receive_buf(tty, cbuf, fbuf, count);
ld->receive_buf(tty, chead, fhead, count);
done:
tty_ldisc_deref(ld);
}