aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/mos7840.c
diff options
context:
space:
mode:
authorMark Ferrell <mferrell@uplogix.com>2012-07-24 14:15:13 -0500
committerBen Hutchings <ben@decadent.org.uk>2012-09-12 03:36:55 +0100
commit4ca589e245b8806bc8dc055250c0168dc2a25a92 (patch)
tree4e22143e3ca2a33b97b01404b568b965397e48f8 /drivers/usb/serial/mos7840.c
parent60fbcbaa4549c9d21f5dca40820c13a8276ca75a (diff)
downloadkernel_samsung_smdk4412-4ca589e245b8806bc8dc055250c0168dc2a25a92.zip
kernel_samsung_smdk4412-4ca589e245b8806bc8dc055250c0168dc2a25a92.tar.gz
kernel_samsung_smdk4412-4ca589e245b8806bc8dc055250c0168dc2a25a92.tar.bz2
usb: serial: mos7840: Fixup mos7840_chars_in_buffer()
commit 5c263b92f828af6a8cf54041db45ceae5af8f2ab upstream. * Use the buffer content length as opposed to the total buffer size. This can be a real problem when using the mos7840 as a usb serial-console as all kernel output is truncated during boot. Signed-off-by: Mark Ferrell <mferrell@uplogix.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'drivers/usb/serial/mos7840.c')
-rw-r--r--drivers/usb/serial/mos7840.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c
index 5c7d654..b150ed9 100644
--- a/drivers/usb/serial/mos7840.c
+++ b/drivers/usb/serial/mos7840.c
@@ -1191,9 +1191,12 @@ static int mos7840_chars_in_buffer(struct tty_struct *tty)
}
spin_lock_irqsave(&mos7840_port->pool_lock, flags);
- for (i = 0; i < NUM_URBS; ++i)
- if (mos7840_port->busy[i])
- chars += URB_TRANSFER_BUFFER_SIZE;
+ for (i = 0; i < NUM_URBS; ++i) {
+ if (mos7840_port->busy[i]) {
+ struct urb *urb = mos7840_port->write_urb_pool[i];
+ chars += urb->transfer_buffer_length;
+ }
+ }
spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
dbg("%s - returns %d", __func__, chars);
return chars;