mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 11:56:45 +07:00
V4L/DVB (9544): gspca: Clear the bulk endpoint at starting time when bulk transfer.
- usb_clear_halt() added in gspca and removed in finepix. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
5017c7bde4
commit
8fe2f1d522
@ -314,9 +314,6 @@ static int sd_start(struct gspca_dev *gspca_dev)
|
||||
int ret;
|
||||
int size_ret;
|
||||
|
||||
/* Reset bulk in endpoint */
|
||||
usb_clear_halt(gspca_dev->dev, gspca_dev->cam.epaddr);
|
||||
|
||||
/* Init the device */
|
||||
memset(gspca_dev->usb_buf, 0, 12);
|
||||
gspca_dev->usb_buf[0] = 0xc6;
|
||||
|
@ -597,6 +597,12 @@ static int gspca_init_transfer(struct gspca_dev *gspca_dev)
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
/* clear the bulk endpoint */
|
||||
if (gspca_dev->alt == 0) /* if bulk transfer */
|
||||
usb_clear_halt(gspca_dev->dev,
|
||||
usb_rcvintpipe(gspca_dev->dev,
|
||||
gspca_dev->cam.epaddr));
|
||||
|
||||
/* start the cam */
|
||||
ret = gspca_dev->sd_desc->start(gspca_dev);
|
||||
if (ret < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user