|
@@ -429,11 +429,8 @@ static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
|
|
|
if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
|
|
|
return 0;
|
|
|
|
|
|
- if (urb->status < 0) {
|
|
|
+ if (urb->status < 0)
|
|
|
print_err_status(dev, -1, urb->status);
|
|
|
- if (urb->status == -ENOENT)
|
|
|
- return 0;
|
|
|
- }
|
|
|
|
|
|
buf = dev->usb_ctl.vid_buf;
|
|
|
if (buf != NULL)
|
|
@@ -525,11 +522,8 @@ static inline int em28xx_isoc_copy_vbi(struct em28xx *dev, struct urb *urb)
|
|
|
if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
|
|
|
return 0;
|
|
|
|
|
|
- if (urb->status < 0) {
|
|
|
+ if (urb->status < 0)
|
|
|
print_err_status(dev, -1, urb->status);
|
|
|
- if (urb->status == -ENOENT)
|
|
|
- return 0;
|
|
|
- }
|
|
|
|
|
|
buf = dev->usb_ctl.vid_buf;
|
|
|
if (buf != NULL)
|