aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2009-03-08 22:01:08 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:43:08 -0400
commit5a771cb186dfa1f663ea15cdff3e32e04a8427e3 (patch)
tree84f081cd48cef280ac4cce8bd86cc8e1d7691dbd /drivers
parent632fe9fe440249642845675d97436c667cbbd21e (diff)
V4L/DVB (10846): dvb/frontends: fix duplicate 'debug' symbol
Fix dvb frontend debug variable to be static, to avoid linker errors: drivers/built-in.o:(.data+0xf4b0): multiple definition of `debug' arch/x86/kernel/built-in.o:(.kprobes.text+0x90): first defined here ld: Warning: size of symbol `debug' changed from 85 in arch/x86/kernel/built-in.o to 4 in drivers/built-in.o It would also be Good if arch/x86/kernel/entry_32.S didn't have a non-static 'debug' symbol. OTOH, it helps catch things like this one. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/dvb/frontends/stv0900_core.c4
-rw-r--r--drivers/media/dvb/frontends/stv0900_priv.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/dvb/frontends/stv0900_core.c b/drivers/media/dvb/frontends/stv0900_core.c
index ee20fbfc45f4..ca26518eafcd 100644
--- a/drivers/media/dvb/frontends/stv0900_core.c
+++ b/drivers/media/dvb/frontends/stv0900_core.c
@@ -34,8 +34,8 @@
34#include "stv0900_priv.h" 34#include "stv0900_priv.h"
35#include "stv0900_init.h" 35#include "stv0900_init.h"
36 36
37int debug = 1; 37static int stvdebug = 1;
38module_param(debug, int, 0644); 38module_param_named(debug, stvdebug, int, 0644);
39 39
40/* internal params node */ 40/* internal params node */
41struct stv0900_inode { 41struct stv0900_inode {
diff --git a/drivers/media/dvb/frontends/stv0900_priv.h b/drivers/media/dvb/frontends/stv0900_priv.h
index 28350fbeb08d..762d5af62d7a 100644
--- a/drivers/media/dvb/frontends/stv0900_priv.h
+++ b/drivers/media/dvb/frontends/stv0900_priv.h
@@ -62,11 +62,11 @@
62 62
63#define dmd_choose(a, b) (demod = STV0900_DEMOD_2 ? b : a)) 63#define dmd_choose(a, b) (demod = STV0900_DEMOD_2 ? b : a))
64 64
65extern int debug; 65static int stvdebug;
66 66
67#define dprintk(args...) \ 67#define dprintk(args...) \
68 do { \ 68 do { \
69 if (debug) \ 69 if (stvdebug) \
70 printk(KERN_DEBUG args); \ 70 printk(KERN_DEBUG args); \
71 } while (0) 71 } while (0)
72 72