summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/au0828/au0828-video.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab2009-03-19 23:26:23 +0100
committerMauro Carvalho Chehab2009-03-30 17:43:29 +0200
commit80c6e358c1b6da0b9aa97e10c82317b7104821bb (patch)
tree9b678405539eb51541177525bc2ef6e4adbe589b /drivers/media/video/au0828/au0828-video.c
parentV4L/DVB (11108): get_dvb_firmware: Add option to download firmware for cx231xx (diff)
downloadkernel-qcow2-linux-80c6e358c1b6da0b9aa97e10c82317b7104821bb.tar.gz
kernel-qcow2-linux-80c6e358c1b6da0b9aa97e10c82317b7104821bb.tar.xz
kernel-qcow2-linux-80c6e358c1b6da0b9aa97e10c82317b7104821bb.zip
V4L/DVB (11109): au0828: Fix compilation when VIDEO_ADV_DEBUG = n
As reported by Kyle McMartin and Randy Dunlap: drivers/media/video/au0828/au0828-video.c:1438: error: 'const struct v4l2_subdev_core_ops' has no member named 'g_register' drivers/media/video/au0828/au0828-video.c:1453: error: 'const struct v4l2_subdev_core_ops' has no member named 's_register' This patch properly implements those two API ioctls only when debug is enabled. Cc: Devin Heitmueller <dheitmueller@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/au0828/au0828-video.c')
-rw-r--r--drivers/media/video/au0828/au0828-video.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/video/au0828/au0828-video.c b/drivers/media/video/au0828/au0828-video.c
index 5de968e128f6..d3a388af46e7 100644
--- a/drivers/media/video/au0828/au0828-video.c
+++ b/drivers/media/video/au0828/au0828-video.c
@@ -1427,6 +1427,7 @@ static int vidioc_streamoff(struct file *file, void *priv,
return 0;
}
+#ifdef CONFIG_VIDEO_ADV_DEBUG
static int vidioc_g_register(struct file *file, void *priv,
struct v4l2_dbg_register *reg)
{
@@ -1457,6 +1458,7 @@ static int vidioc_s_register(struct file *file, void *priv,
}
return 0;
}
+#endif
static int vidioc_reqbufs(struct file *file, void *priv,
struct v4l2_requestbuffers *rb)
@@ -1578,8 +1580,8 @@ static const struct v4l2_ioctl_ops video_ioctl_ops = {
#ifdef CONFIG_VIDEO_ADV_DEBUG
.vidioc_g_register = vidioc_g_register,
.vidioc_s_register = vidioc_s_register,
- .vidioc_g_chip_ident = vidioc_g_chip_ident,
#endif
+ .vidioc_g_chip_ident = vidioc_g_chip_ident,
#ifdef CONFIG_VIDEO_V4L1_COMPAT
.vidiocgmbuf = vidiocgmbuf,
#endif