mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
d71f6fec03
PR: 135702 Submitteed by: Chris Petrik <c.petrik.sosa@gmail.com> Thanks to: "Juergen Lock" <nox@jelal.kn-bremen.de>
22 lines
782 B
C
22 lines
782 B
C
Index: io/hpmud/musb.c
|
|
@@ -122,10 +122,16 @@
|
|
{
|
|
ret = usb_control_msg(dev, USB_ENDPOINT_IN, USB_REQ_GET_DESCRIPTOR, (USB_DT_STRING << 8) + index,
|
|
0x409, tbuf, sizeof(tbuf), LIBUSB_CONTROL_REQ_TIMEOUT);
|
|
- if (ret==0)
|
|
+ if (ret==0
|
|
+#ifdef __FreeBSD__
|
|
+ || ret == -EIO
|
|
+#endif
|
|
+ )
|
|
{
|
|
- /* This retry is necessary for lj1000 and lj1005. des 12/12/07 */
|
|
- BUG("get_string_descriptor zero result, retrying...");
|
|
+ /* This retry is necessary for lj1000 and lj1005. des 12/12/07
|
|
+ Also HP Photosmart 42xx seems to suffer transient errors with serial id */
|
|
+ BUG("get_string_descriptor error result %d, retrying in 2 secs...", ret);
|
|
+ sleep(2);
|
|
continue;
|
|
}
|
|
break;
|