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

Commit 9de436cf authored by Frank Zago's avatar Frank Zago Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9077): gspca: Set the right V4L2_DEBUG values in the main driver.

parent 117a45a8
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -843,9 +843,11 @@ static int dev_open(struct inode *inode, struct file *file)
#ifdef GSPCA_DEBUG
	/* activate the v4l2 debug */
	if (gspca_debug & D_V4L2)
		gspca_dev->vdev.debug |= 3;
		gspca_dev->vdev.debug |= V4L2_DEBUG_IOCTL
					| V4L2_DEBUG_IOCTL_ARG;
	else
		gspca_dev->vdev.debug &= ~3;
		gspca_dev->vdev.debug &= ~(V4L2_DEBUG_IOCTL
					| V4L2_DEBUG_IOCTL_ARG);
#endif
	ret = 0;
out: