diff options
author | Michael Hunold <devnull@localhost> | 2003-06-26 09:46:24 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-06-26 09:46:24 +0000 |
commit | 0c3fd11f85e7be94f4d388e5d93c83c4646055c1 (patch) | |
tree | e7e68be5b811a436ea1813e3a89daf3c021632c6 /linux/drivers/media/common | |
parent | 22dcd452c5380c304677847cfd871c67d056d029 (diff) | |
download | mediapointer-dvb-s2-0c3fd11f85e7be94f4d388e5d93c83c4646055c1.tar.gz mediapointer-dvb-s2-0c3fd11f85e7be94f4d388e5d93c83c4646055c1.tar.bz2 |
- fix usage of "v4l2_common_std()" from v4l2-common.c in saa7146_video.c
- change saa7146_vv.h the way described earlier
- follow these changes in budget-av and hexium driver
Diffstat (limited to 'linux/drivers/media/common')
-rw-r--r-- | linux/drivers/media/common/saa7146_video.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/common/saa7146_video.c b/linux/drivers/media/common/saa7146_video.c index 5bbbc4d97..a4049526c 100644 --- a/linux/drivers/media/common/saa7146_video.c +++ b/linux/drivers/media/common/saa7146_video.c @@ -944,7 +944,8 @@ int saa7146_video_do_ioctl(struct inode *inode, struct file *file, unsigned int return -EINVAL; if( e->index < dev->ext->ext_vv_data->num_stds ) { DEB_EE(("VIDIOC_ENUMSTD: index:%d\n",e->index)); - return v4l2_video_std_construct(e, dev->ext->ext_vv_data->stds[e->index].id, dev->ext->ext_vv_data->stds[e->index].name); + v4l2_video_std_construct(e, dev->ext->ext_vv_data->stds[e->index].id, dev->ext->ext_vv_data->stds[e->index].name); + return 0; } return -EINVAL; } |