Skip to content

Commit

Permalink
[media] gspca - benq: Remove the useless function sd_isoc_init
Browse files Browse the repository at this point in the history
The sd_isoc_init() did only a set interface which is done in gspca main.

Signed-off-by: Jean-François Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Jean-François Moine authored and Mauro Carvalho Chehab committed Sep 24, 2011
1 parent 7c2808e commit 2d06d5d
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions drivers/media/video/gspca/benq.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,6 @@ static int sd_init(struct gspca_dev *gspca_dev)
return 0;
}

static int sd_isoc_init(struct gspca_dev *gspca_dev)
{
int ret;

ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface,
gspca_dev->nbalt - 1);
if (ret < 0) {
pr_err("usb_set_interface failed\n");
return ret;
}
/* reg_w(gspca_dev, 0x0003, 0x0002); */
return 0;
}

/* -- start the camera -- */
static int sd_start(struct gspca_dev *gspca_dev)
{
Expand Down Expand Up @@ -271,7 +257,6 @@ static const struct sd_desc sd_desc = {
.nctrls = ARRAY_SIZE(sd_ctrls),
.config = sd_config,
.init = sd_init,
.isoc_init = sd_isoc_init,
.start = sd_start,
.stopN = sd_stopN,
.pkt_scan = sd_pkt_scan,
Expand Down

0 comments on commit 2d06d5d

Please sign in to comment.