V4L/DVB (13185): gspca: Don't resubmit error status URB's when suspending

gspca: Don't resubmit error status URB's when suspending

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Hans de Goede 2009-10-24 15:02:14 -03:00 committed by Mauro Carvalho Chehab
parent bf926adfbb
commit 6a540bdf01
1 changed files with 6 additions and 4 deletions

View File

@ -135,9 +135,10 @@ static void fill_frame(struct gspca_dev *gspca_dev,
if (urb->status == -ESHUTDOWN) if (urb->status == -ESHUTDOWN)
return; /* disconnection */ return; /* disconnection */
#ifdef CONFIG_PM #ifdef CONFIG_PM
if (!gspca_dev->frozen) if (gspca_dev->frozen)
return;
#endif #endif
PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status); PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
goto resubmit; goto resubmit;
} }
pkt_scan = gspca_dev->sd_desc->pkt_scan; pkt_scan = gspca_dev->sd_desc->pkt_scan;
@ -218,9 +219,10 @@ static void bulk_irq(struct urb *urb)
break; break;
default: default:
#ifdef CONFIG_PM #ifdef CONFIG_PM
if (!gspca_dev->frozen) if (gspca_dev->frozen)
return;
#endif #endif
PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status); PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
goto resubmit; goto resubmit;
} }