Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 138067
b: refs/heads/master
c: 5a771cb
h: refs/heads/master
i:
  138065: bedd18d
  138063: 1fa1bcc
v: v3
  • Loading branch information
Randy Dunlap authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 2b91cec commit 86b07ea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 632fe9fe440249642845675d97436c667cbbd21e
refs/heads/master: 5a771cb186dfa1f663ea15cdff3e32e04a8427e3
4 changes: 2 additions & 2 deletions trunk/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 trunk/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 86b07ea

Please sign in to comment.