diff options
| author | Nick Pelly <npelly@google.com> | 2010-07-22 15:49:43 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-07-22 15:49:43 -0700 |
| commit | 8137a8d941d7b8db16be23a06a834ef4aaaabef9 (patch) | |
| tree | 2070f6d61909e44582128b41d520354a68219e62 | |
| parent | 668f7dc61f891a19742ee139a1e8e202ec6dcbb1 (diff) | |
| parent | 286d50fe34edef9b93cde6a3e2d052b2b96d071c (diff) | |
| download | system_core-8137a8d941d7b8db16be23a06a834ef4aaaabef9.tar.gz system_core-8137a8d941d7b8db16be23a06a834ef4aaaabef9.tar.bz2 system_core-8137a8d941d7b8db16be23a06a834ef4aaaabef9.zip | |
Merge "Allow OSX fastboot to work with more devices."
| -rw-r--r-- | fastboot/usb_osx.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fastboot/usb_osx.c b/fastboot/usb_osx.c index 948868722..570a456ac 100644 --- a/fastboot/usb_osx.c +++ b/fastboot/usb_osx.c @@ -231,8 +231,7 @@ static int try_interfaces(IOUSBDeviceInterface182 **dev, usb_handle *handle) { kr = (*interface)->ClearPipeStallBothEnds(interface, handle->bulkIn); if (kr != 0) { - ERR("could not clear input pipe; result %d", kr); - return -1; + ERR("could not clear input pipe; result %x, ignoring...\n", kr); } } @@ -240,8 +239,7 @@ static int try_interfaces(IOUSBDeviceInterface182 **dev, usb_handle *handle) { kr = (*interface)->ClearPipeStallBothEnds(interface, handle->bulkOut); if (kr != 0) { - ERR("could not clear output pipe; result %d", kr); - return -1; + ERR("could not clear output pipe; result %x, ignoring....\n", kr); } } |
