aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/gspca/pac207.c
diff options
context:
space:
mode:
authorTheodore Kilgore <kilgota@banach.math.auburn.edu>2013-02-04 11:17:55 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-05 13:13:48 -0500
commitc93396e13576928a073154b5715761ff8a998368 (patch)
tree2ef9873a27412fe6d5dbe361d7298301510573f6 /drivers/media/usb/gspca/pac207.c
parent70c8ecf54bf735f300f86bde562420af90bf9db4 (diff)
[media] gspca: Remove gspca-specific debug magic
Instead use v4l2_dbg and v4l2_err. Note that the PDEBUG macro is kept to make this patch-set less invasive, but it is simply a wrapper around v4l2_dbg now. Most of the other changes are there to make the dev parameter for the v4l2_xxx macros available everywhere we do logging. Signed-off-by: Theodore Kilgore <kilgota@auburn.edu> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/gspca/pac207.c')
-rw-r--r--drivers/media/usb/gspca/pac207.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/gspca/pac207.c b/drivers/media/usb/gspca/pac207.c
index 3b75097dd34e..83519be94e58 100644
--- a/drivers/media/usb/gspca/pac207.c
+++ b/drivers/media/usb/gspca/pac207.c
@@ -373,7 +373,7 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev,
373 struct sd *sd = (struct sd *) gspca_dev; 373 struct sd *sd = (struct sd *) gspca_dev;
374 unsigned char *sof; 374 unsigned char *sof;
375 375
376 sof = pac_find_sof(&sd->sof_read, data, len); 376 sof = pac_find_sof(gspca_dev, &sd->sof_read, data, len);
377 if (sof) { 377 if (sof) {
378 int n; 378 int n;
379 379