Linux: fix inaccurate comment
authorHans de Goede <hdegoede@redhat.com>
Mon, 26 Mar 2012 22:01:48 +0000 (23:01 +0100)
committerPete Batard <pete@akeo.ie>
Mon, 26 Mar 2012 22:03:28 +0000 (23:03 +0100)
* We don't stop on urbs/iso pkts with less data then requested

libusb/os/linux_usbfs.c

index 8d88c87..780f0bd 100644 (file)
@@ -2154,8 +2154,7 @@ static int handle_iso_completion(struct usbi_transfer *itransfer,
                break;
        }
 
-       /* if we're the last urb or we got less data than requested then we're
-        * done */
+       /* if we're the last urb then we're done */
        if (urb_idx == num_urbs) {
                usbi_dbg("last URB in transfer --> complete!");
                free_iso_urbs(tpriv);