Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3145b8c1 authored by Jean-Francois Moine's avatar Jean-Francois Moine Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9119): gspca: Don't destroy the URBs on disconnect.

parent 79a9098a
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -1903,17 +1903,12 @@ void gspca_disconnect(struct usb_interface *intf)

	usb_set_intfdata(intf, NULL);

	gspca_dev->present = 0;
	mutex_lock(&gspca_dev->queue_lock);
	mutex_lock(&gspca_dev->usb_lock);
	gspca_dev->streaming = 0;
	destroy_urbs(gspca_dev);
	mutex_unlock(&gspca_dev->usb_lock);
	mutex_unlock(&gspca_dev->queue_lock);

/* We don't want people trying to open up the device */
	video_unregister_device(&gspca_dev->vdev);

	gspca_dev->present = 0;
	gspca_dev->streaming = 0;

	kref_put(&gspca_dev->kref, gspca_delete);

	PDEBUG(D_PROBE, "disconnect complete");