dect
/
linux-2.6
Archived
13
0
Fork 0

USB: aircable: fix incorrect write-buffer length

Returned length should include header length.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Johan Hovold 2010-05-19 00:01:33 +02:00 committed by Greg Kroah-Hartman
parent 6d1bf48e24
commit f26c2889a4
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ static int aircable_prepare_write_buffer(struct usb_serial_port *port,
buf[1] = TX_HEADER_1;
put_unaligned_le16(count, &buf[2]);
return count;
return count + HCI_HEADER_LENGTH;
}
static int aircable_probe(struct usb_serial *serial,