summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/bt8xx/bttv-input.c
diff options
context:
space:
mode:
authorAdrian Bunk2006-12-28 16:47:47 +0100
committerMauro Carvalho Chehab2007-02-21 16:34:16 +0100
commitc408a6f673e8fb0b67c81fc9cb29414265c1e6c1 (patch)
tree76c57c97ef97461f3fcf95c47bf09ec7a7299942 /drivers/media/video/bt8xx/bttv-input.c
parentV4L/DVB (5015): Add support for more Encore TV cards (diff)
downloadkernel-qcow2-linux-c408a6f673e8fb0b67c81fc9cb29414265c1e6c1.tar.gz
kernel-qcow2-linux-c408a6f673e8fb0b67c81fc9cb29414265c1e6c1.tar.xz
kernel-qcow2-linux-c408a6f673e8fb0b67c81fc9cb29414265c1e6c1.zip
V4L/DVB (5017): DVB: fix compile error
This patch fixes the following compile error: <-- snip --> ... LD drivers/media/video/built-in.o drivers/media/video/saa7134/built-in.o:(.data+0x85ec): multiple definition of `ir_rc5_remote_gap' drivers/media/video/bt8xx/built-in.o:(.data+0x734c): first defined here drivers/media/video/saa7134/built-in.o:(.data+0x85f0): multiple definition of `ir_rc5_key_timeout' drivers/media/video/bt8xx/built-in.o:(.data+0x7350): first defined here make[4]: *** [drivers/media/video/built-in.o] Error 1 <-- snip --> Since this variables were needlessly global, this patch implements the trivial fix of making them static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/bt8xx/bttv-input.c')
-rw-r--r--drivers/media/video/bt8xx/bttv-input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/bt8xx/bttv-input.c b/drivers/media/video/bt8xx/bttv-input.c
index 14c07c606632..825161b9cb3f 100644
--- a/drivers/media/video/bt8xx/bttv-input.c
+++ b/drivers/media/video/bt8xx/bttv-input.c
@@ -36,9 +36,9 @@ module_param(repeat_delay, int, 0644);
static int repeat_period = 33;
module_param(repeat_period, int, 0644);
-int ir_rc5_remote_gap = 885;
+static int ir_rc5_remote_gap = 885;
module_param(ir_rc5_remote_gap, int, 0644);
-int ir_rc5_key_timeout = 200;
+static int ir_rc5_key_timeout = 200;
module_param(ir_rc5_key_timeout, int, 0644);
#define DEVNAME "bttv-input"