aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/tda8290.c2
-rw-r--r--include/media/tuner.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index 2aeae864edc7..0dde6af251dd 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -535,7 +535,7 @@ int tda8290_init(struct i2c_client *c)
535 if (tuner_addrs == 0) { 535 if (tuner_addrs == 0) {
536 tuner_addrs = 0x61; 536 tuner_addrs = 0x61;
537 tuner_info ("could not clearly identify tuner address, defaulting to %x\n", 537 tuner_info ("could not clearly identify tuner address, defaulting to %x\n",
538 tuner_addrs); 538 tuner_addrs);
539 } else { 539 } else {
540 tuner_addrs = tuner_addrs & 0xff; 540 tuner_addrs = tuner_addrs & 0xff;
541 tuner_info ("setting tuner address to %x\n", tuner_addrs); 541 tuner_info ("setting tuner address to %x\n", tuner_addrs);
diff --git a/include/media/tuner.h b/include/media/tuner.h
index 8058be63ad0e..5196d9eac442 100644
--- a/include/media/tuner.h
+++ b/include/media/tuner.h
@@ -214,6 +214,7 @@ extern int tda8290_init(struct i2c_client *c);
214extern int tea5767_tuner_init(struct i2c_client *c); 214extern int tea5767_tuner_init(struct i2c_client *c);
215extern int default_tuner_init(struct i2c_client *c); 215extern int default_tuner_init(struct i2c_client *c);
216extern int tea5767_autodetection(struct i2c_client *c); 216extern int tea5767_autodetection(struct i2c_client *c);
217extern int tda8290_probe(struct i2c_client *c);
217 218
218#define tuner_warn(fmt, arg...) do {\ 219#define tuner_warn(fmt, arg...) do {\
219 printk(KERN_WARNING "%s %d-%04x: " fmt, t->i2c.driver->name, \ 220 printk(KERN_WARNING "%s %d-%04x: " fmt, t->i2c.driver->name, \