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

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

V4L/DVB (8571): gspca: Don't use CONFIG_VIDEO_ADV_DEBUG as a compile option.



This option is changed to GSPCA_DEBUG and it is set by default in gspca.h.

Signed-off-by: default avatarJean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 8f47a3ce
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ static void reg_r(struct gspca_dev *gspca_dev,
{
	struct usb_device *dev = gspca_dev->dev;

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (len > sizeof gspca_dev->usb_buf) {
		err("reg_r: buffer overflow");
		return;
@@ -163,7 +163,7 @@ static void reg_w(struct gspca_dev *gspca_dev,
{
	struct usb_device *dev = gspca_dev->dev;

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (len > sizeof gspca_dev->usb_buf) {
		err("reg_w: buffer overflow");
		return;
+2 −2
Original line number Diff line number Diff line
@@ -233,7 +233,7 @@ static void reg_r(struct gspca_dev *gspca_dev,
{
	struct usb_device *dev = gspca_dev->dev;

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (len > sizeof gspca_dev->usb_buf) {
		err("reg_r: buffer overflow");
		return;
@@ -271,7 +271,7 @@ static void reg_w(struct gspca_dev *gspca_dev,
{
	struct usb_device *dev = gspca_dev->dev;

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (len > sizeof gspca_dev->usb_buf) {
		err("reg_w: buffer overflow");
		return;
+5 −5
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ MODULE_LICENSE("GPL");

static int video_nr = -1;

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
int gspca_debug = D_ERR | D_PROBE;
EXPORT_SYMBOL(gspca_debug);

@@ -677,7 +677,7 @@ static int try_fmt_vid_cap(struct gspca_dev *gspca_dev,
	w = fmt->fmt.pix.width;
	h = fmt->fmt.pix.height;

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (gspca_debug & D_CONF)
		PDEBUG_MODE("try fmt cap", fmt->fmt.pix.pixelformat, w, h);
#endif
@@ -785,7 +785,7 @@ static int dev_open(struct inode *inode, struct file *file)
	}
	gspca_dev->users++;
	file->private_data = gspca_dev;
#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	/* activate the v4l2 debug */
	if (gspca_debug & D_V4L2)
		gspca_dev->vdev.debug |= 3;
@@ -1080,7 +1080,7 @@ static int vidioc_streamon(struct file *file, void *priv,
		if (ret < 0)
			goto out;
	}
#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (gspca_debug & D_STREAM) {
		PDEBUG_MODE("stream on OK",
			gspca_dev->pixfmt,
@@ -1913,7 +1913,7 @@ static void __exit gspca_exit(void)
module_init(gspca_init);
module_exit(gspca_exit);

#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
module_param_named(debug, gspca_debug, int, 0644);
MODULE_PARM_DESC(debug,
		"Debug (bit) 0x01:error 0x02:probe 0x04:config"
+4 −1
Original line number Diff line number Diff line
@@ -9,7 +9,10 @@
#include <media/v4l2-common.h>
#include <linux/mutex.h>

#ifdef CONFIG_VIDEO_ADV_DEBUG
/* compilation option */
#define GSPCA_DEBUG 1

#ifdef GSPCA_DEBUG
/* GSPCA our debug messages */
extern int gspca_debug;
#define PDEBUG(level, fmt, args...) \
+1 −1
Original line number Diff line number Diff line
@@ -408,7 +408,7 @@ static void reg_w(struct gspca_dev *gspca_dev,
		  const __u8 *buffer,
		  int len)
{
#ifdef CONFIG_VIDEO_ADV_DEBUG
#ifdef GSPCA_DEBUG
	if (len > sizeof gspca_dev->usb_buf) {
		PDEBUG(D_ERR|D_PACK, "reg_w: buffer overflow");
		return;
Loading