Skip to content

Commit

Permalink
V4L/DVB (13185): gspca: Don't resubmit error status URB's when suspen…
Browse files Browse the repository at this point in the history
…ding

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>
  • Loading branch information
Hans de Goede authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent bf926ad commit 6a540bd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/media/video/gspca/gspca.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,10 @@ static void fill_frame(struct gspca_dev *gspca_dev,
if (urb->status == -ESHUTDOWN)
return; /* disconnection */
#ifdef CONFIG_PM
if (!gspca_dev->frozen)
if (gspca_dev->frozen)
return;
#endif
PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
goto resubmit;
}
pkt_scan = gspca_dev->sd_desc->pkt_scan;
Expand Down Expand Up @@ -218,9 +219,10 @@ static void bulk_irq(struct urb *urb)
break;
default:
#ifdef CONFIG_PM
if (!gspca_dev->frozen)
if (gspca_dev->frozen)
return;
#endif
PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
goto resubmit;
}

Expand Down

0 comments on commit 6a540bd

Please sign in to comment.