summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/tea5761.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux/drivers/media/video/tea5761.c')
-rw-r--r--linux/drivers/media/video/tea5761.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/tea5761.c b/linux/drivers/media/video/tea5761.c
index 5a588ee56..785cd105d 100644
--- a/linux/drivers/media/video/tea5761.c
+++ b/linux/drivers/media/video/tea5761.c
@@ -2,7 +2,7 @@
* For Philips TEA5761 FM Chip
* I2C address is allways 0x20 (0x10 at 7-bit mode).
*
- * $Id: tea5761.c,v 1.4 2006/01/02 22:31:44 hverkuil Exp $
+ * $Id: tea5761.c,v 1.5 2006/01/11 21:01:01 hverkuil Exp $
*
* Copyright (c) 2005 Mauro Carvalho Chehab (mchehab@brturbo.com.br)
* This code is placed under the terms of the GNU General Public License
@@ -19,7 +19,7 @@
#define PREFIX "TEA5761 "
/* from tuner-core.c */
-extern int debug;
+extern int tuner_debug;
/*****************************************************************************/
@@ -167,7 +167,7 @@ static void set_radio_freq(struct i2c_client *c, unsigned int frq)
buffer[1] = (div >> 8) & 0x3f;
buffer[2] = div & 0xff;
- if (debug)
+ if (tuner_debug)
tea5761_status_dump(buffer);
if (7 != (rc = i2c_master_send(c, buffer, 7)))