diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-29 20:38:51 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-29 17:41:42 -0400 |
commit | aed6abd662c2903733bea7fcd3856c306e650680 (patch) | |
tree | fee80dfdbf3a19bdc79c37efec4ec69989ff5e32 /drivers/media/video/cx18/cx18-controls.c | |
parent | a07c8779fd212dcbad886a2824ef5f8b42cd5a06 (diff) |
V4L-DVB(7789a): cx18: fix symbol conflict with ivtv driver
LD drivers/media/video/built-in.o
drivers/media/video/cx18/built-in.o: In function `get_service_set':
/home/v4l/tokernel/git/drivers/media/video/cx18/cx18-ioctl.c:118: multiple definition of `get_service_set'
drivers/media/video/ivtv/built-in.o:/home/v4l/tokernel/git/drivers/media/video/ivtv/ivtv-ioctl.c:119: first defined here
drivers/media/video/cx18/built-in.o: In function `expand_service_set':
/home/v4l/tokernel/git/drivers/media/video/cx18/cx18-ioctl.c:92: multiple definition of `expand_service_set'
drivers/media/video/ivtv/built-in.o:/home/v4l/tokernel/git/drivers/media/video/ivtv/ivtv-ioctl.c:92: first defined here
drivers/media/video/cx18/built-in.o: In function `service2vbi':
/home/v4l/tokernel/git/drivers/media/video/cx18/cx18-ioctl.c:44: multiple definition of `service2vbi'
drivers/media/video/ivtv/built-in.o:/home/v4l/tokernel/git/drivers/media/video/ivtv/ivtv-ioctl.c:42: first defined here
make[2]: ** [drivers/media/video/built-in.o] Erro 1
make[1]: ** [drivers/media/video] Erro 2
make: ** [drivers/media/] Erro 2
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx18/cx18-controls.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-controls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx18/cx18-controls.c b/drivers/media/video/cx18/cx18-controls.c index da299ae61cff..2bdac5ebbb0d 100644 --- a/drivers/media/video/cx18/cx18-controls.c +++ b/drivers/media/video/cx18/cx18-controls.c | |||
@@ -184,12 +184,12 @@ static int cx18_setup_vbi_fmt(struct cx18 *cx, enum v4l2_mpeg_stream_vbi_fmt fmt | |||
184 | if (cx->vbi.insert_mpeg == 0) | 184 | if (cx->vbi.insert_mpeg == 0) |
185 | return 0; | 185 | return 0; |
186 | /* Need sliced data for mpeg insertion */ | 186 | /* Need sliced data for mpeg insertion */ |
187 | if (get_service_set(cx->vbi.sliced_in) == 0) { | 187 | if (cx18_get_service_set(cx->vbi.sliced_in) == 0) { |
188 | if (cx->is_60hz) | 188 | if (cx->is_60hz) |
189 | cx->vbi.sliced_in->service_set = V4L2_SLICED_CAPTION_525; | 189 | cx->vbi.sliced_in->service_set = V4L2_SLICED_CAPTION_525; |
190 | else | 190 | else |
191 | cx->vbi.sliced_in->service_set = V4L2_SLICED_WSS_625; | 191 | cx->vbi.sliced_in->service_set = V4L2_SLICED_WSS_625; |
192 | expand_service_set(cx->vbi.sliced_in, cx->is_50hz); | 192 | cx18_expand_service_set(cx->vbi.sliced_in, cx->is_50hz); |
193 | } | 193 | } |
194 | return 0; | 194 | return 0; |
195 | } | 195 | } |