commit | 931bdcc09a3d805cf25033951adb95c8e5159e46 | [log] [tgz] |
---|---|---|
author | Werner Johansson <werner.johansson@sonyericsson.com> | Wed Jun 30 18:42:21 2010 -0700 |
committer | Dima Zavin <dima@android.com> | Wed Jun 30 21:03:46 2010 -0700 |
tree | 0a1dfc93ff7db16ccd042839edbdae1975057fd6 | |
parent | eb42170e6c8b70f11dca9965785aa04a80290c72 [diff] |
Set explicit timeout on USB control transfer This attempts to solve the intermittent issues with serial number showing up as all question marks when issuing "fastboot devices"
diff --git a/fastboot/usb_linux.c b/fastboot/usb_linux.c index 2ce53eb..78b7b98 100644 --- a/fastboot/usb_linux.c +++ b/fastboot/usb_linux.c
@@ -137,6 +137,7 @@ ctrl.wIndex = 0; ctrl.wLength = sizeof(buffer); ctrl.data = buffer; + ctrl.timeout = 50; result = ioctl(fd, USBDEVFS_CONTROL, &ctrl); if (result > 0) {