diff options
Diffstat (limited to 'drivers/media/video/tea5767.c')
-rw-r--r-- | drivers/media/video/tea5767.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/video/tea5767.c b/drivers/media/video/tea5767.c index 4647db66ba68..261b7a3c0417 100644 --- a/drivers/media/video/tea5767.c +++ b/drivers/media/video/tea5767.c | |||
@@ -17,6 +17,9 @@ | |||
17 | 17 | ||
18 | #define PREFIX "TEA5767 " | 18 | #define PREFIX "TEA5767 " |
19 | 19 | ||
20 | /* from tuner-core.c */ | ||
21 | extern int debug; | ||
22 | |||
20 | /*****************************************************************************/ | 23 | /*****************************************************************************/ |
21 | 24 | ||
22 | /****************************** | 25 | /****************************** |
@@ -246,7 +249,7 @@ static void set_radio_freq(struct i2c_client *c, unsigned int frq) | |||
246 | if (5 != (rc = i2c_master_send(c, buffer, 5))) | 249 | if (5 != (rc = i2c_master_send(c, buffer, 5))) |
247 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); | 250 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); |
248 | 251 | ||
249 | if (tuner_debug) { | 252 | if (debug) { |
250 | if (5 != (rc = i2c_master_recv(c, buffer, 5))) | 253 | if (5 != (rc = i2c_master_recv(c, buffer, 5))) |
251 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); | 254 | tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc); |
252 | else | 255 | else |