Skip to content

Commit

Permalink
V4L/DVB (10846): dvb/frontends: fix duplicate 'debug' symbol
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Randy Dunlap authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 632fe9f commit 5a771cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/frontends/stv0900_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#include "stv0900_priv.h"
#include "stv0900_init.h"

int debug = 1;
module_param(debug, int, 0644);
static int stvdebug = 1;
module_param_named(debug, stvdebug, int, 0644);

/* internal params node */
struct stv0900_inode {
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/dvb/frontends/stv0900_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@

#define dmd_choose(a, b) (demod = STV0900_DEMOD_2 ? b : a))

extern int debug;
static int stvdebug;

#define dprintk(args...) \
do { \
if (debug) \
if (stvdebug) \
printk(KERN_DEBUG args); \
} while (0)

Expand Down

0 comments on commit 5a771cb

Please sign in to comment.