Documentation: USB: fix example bulk-message timeout
[linux-2.6-microblaze.git] / Documentation / driver-api / usb / writing_usb_driver.rst
index e09dac9..b43e1ce 100644 (file)
@@ -234,7 +234,7 @@ error message. This can be shown with the following code::
                           skel->bulk_in_endpointAddr),
                           skel->bulk_in_buffer,
                           skel->bulk_in_size,
-                          &count, HZ*10);
+                          &count, 5000);
     /* if the read was successful, copy the data to user space */
     if (!retval) {
            if (copy_to_user (buffer, skel->bulk_in_buffer, count))