diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-06-23 05:42:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 01:05:13 -0400 |
commit | dc46ace15e50cb8af3f3072c00aaf3429770b0e2 (patch) | |
tree | d377bbf06a1c7a3c2bd2af2aefaf15ec0f9c8505 /drivers/media/video/vivi.c | |
parent | 65271bff0fb11557d04d389df728d12dfba75dc3 (diff) |
V4L/DVB (4146): Drivers/media/video/vivi.c: make 2 functions static
Make two needlessly global functions static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/vivi.c')
-rw-r--r-- | drivers/media/video/vivi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/vivi.c b/drivers/media/video/vivi.c index 269c1b14cac5..41d23c8acbd8 100644 --- a/drivers/media/video/vivi.c +++ b/drivers/media/video/vivi.c | |||
@@ -1011,7 +1011,7 @@ static int vidiocgmbuf (struct file *file, void *priv, struct video_mbuf *mbuf) | |||
1011 | } | 1011 | } |
1012 | #endif | 1012 | #endif |
1013 | 1013 | ||
1014 | int vidioc_streamon (struct file *file, void *priv, enum v4l2_buf_type i) | 1014 | static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i) |
1015 | { | 1015 | { |
1016 | struct vivi_fh *fh=priv; | 1016 | struct vivi_fh *fh=priv; |
1017 | struct vivi_dev *dev = fh->dev; | 1017 | struct vivi_dev *dev = fh->dev; |
@@ -1026,7 +1026,7 @@ int vidioc_streamon (struct file *file, void *priv, enum v4l2_buf_type i) | |||
1026 | return (videobuf_streamon(&fh->vb_vidq)); | 1026 | return (videobuf_streamon(&fh->vb_vidq)); |
1027 | } | 1027 | } |
1028 | 1028 | ||
1029 | int vidioc_streamoff (struct file *file, void *priv, enum v4l2_buf_type i) | 1029 | static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) |
1030 | { | 1030 | { |
1031 | struct vivi_fh *fh=priv; | 1031 | struct vivi_fh *fh=priv; |
1032 | struct vivi_dev *dev = fh->dev; | 1032 | struct vivi_dev *dev = fh->dev; |