mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
V4L/DVB (6681): tda18271: rename 'debug' to 'tda18271_debug'
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
6ca04de36b
commit
54465b082c
1 changed files with 4 additions and 4 deletions
|
@ -25,12 +25,12 @@
|
|||
#include "tda18271.h"
|
||||
#include "tda18271-priv.h"
|
||||
|
||||
static int debug;
|
||||
module_param(debug, int, 0644);
|
||||
static int tda18271_debug;
|
||||
module_param_named(debug, tda18271_debug, int, 0644);
|
||||
MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
|
||||
|
||||
#define dprintk(level, fmt, arg...) do {\
|
||||
if (debug >= level) \
|
||||
if (tda18271_debug >= level) \
|
||||
printk(KERN_DEBUG "%s: " fmt, __FUNCTION__, ##arg); } while (0)
|
||||
|
||||
/*---------------------------------------------------------------------*/
|
||||
|
@ -118,7 +118,7 @@ static void tda18271_read_regs(struct dvb_frontend *fe)
|
|||
printk("ERROR: %s: i2c_transfer returned: %d\n",
|
||||
__FUNCTION__, ret);
|
||||
|
||||
if (debug > 2)
|
||||
if (tda18271_debug > 2)
|
||||
tda18271_dump_regs(fe);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue