diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-22 19:20:12 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 13:36:46 +0200 |
commit | 95f73c5b57990c97047c200b8746ab62a360c5bc (patch) | |
tree | eb7eb4d2a2206b76ef6d91ad14cbd16ea6ed979c /drivers/media/video/ivtv/ivtv-fileops.c | |
parent | V4L/DVB (8560): replace __FUNCTION__ with __func__ (diff) | |
download | linux-95f73c5b57990c97047c200b8746ab62a360c5bc.tar.xz linux-95f73c5b57990c97047c200b8746ab62a360c5bc.zip |
V4L/DVB (8561): make ivtv_claim_stream() static
ivtv_claim_stream() can now become static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-fileops.c')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-fileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-fileops.c b/drivers/media/video/ivtv/ivtv-fileops.c index 7ec5c99f9ad1..304261efc53d 100644 --- a/drivers/media/video/ivtv/ivtv-fileops.c +++ b/drivers/media/video/ivtv/ivtv-fileops.c @@ -39,7 +39,7 @@ associated VBI streams are also automatically claimed. Possible error returns: -EBUSY if someone else has claimed the stream or 0 on success. */ -int ivtv_claim_stream(struct ivtv_open_id *id, int type) +static int ivtv_claim_stream(struct ivtv_open_id *id, int type) { struct ivtv *itv = id->itv; struct ivtv_stream *s = &itv->streams[type]; |