diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-05-28 14:16:41 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2008-05-28 14:16:41 +0200 |
commit | 02c8751b2179fdc48f6c2150fc9f8ebbea626b21 (patch) | |
tree | d60ab3cdb5ea188d8a5e2ceaa95781f0e17f7043 /linux/drivers/media/video/bt8xx/bttvp.h | |
parent | 6e4b5e2932a7b9c24f308ca4d33e525e85ad9276 (diff) | |
download | mediapointer-dvb-s2-02c8751b2179fdc48f6c2150fc9f8ebbea626b21.tar.gz mediapointer-dvb-s2-02c8751b2179fdc48f6c2150fc9f8ebbea626b21.tar.bz2 |
videodev: renamed the vidioc_*_fmt_* callbacks
From: Hans Verkuil <hverkuil@xs4all.nl>
The naming for the callbacks that handle the VIDIOC_ENUM_FMT and
VIDIOC_S/G/TRY_FMT ioctls was very confusing. Renamed it to match
the v4l2_buf_type name.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/bt8xx/bttvp.h')
-rw-r--r-- | linux/drivers/media/video/bt8xx/bttvp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/bt8xx/bttvp.h b/linux/drivers/media/video/bt8xx/bttvp.h index b8ab81fb8..9fd8eeddf 100644 --- a/linux/drivers/media/video/bt8xx/bttvp.h +++ b/linux/drivers/media/video/bt8xx/bttvp.h @@ -263,9 +263,9 @@ int bttv_overlay_risc(struct bttv *btv, struct bttv_overlay *ov, /* ---------------------------------------------------------- */ /* bttv-vbi.c */ -int bttv_try_fmt_vbi(struct file *file, void *fh, struct v4l2_format *f); -int bttv_g_fmt_vbi(struct file *file, void *fh, struct v4l2_format *f); -int bttv_s_fmt_vbi(struct file *file, void *fh, struct v4l2_format *f); +int bttv_try_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *f); +int bttv_g_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *f); +int bttv_s_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *f); extern struct videobuf_queue_ops bttv_vbi_qops; |