diff options
author | Ricardo Cerqueira <v4l@cerqueira.org> | 2005-11-09 00:38:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 10:56:28 -0500 |
commit | 291d1d7356a2cf1da4934a06c4a4e3bca440fbc6 (patch) | |
tree | f55bd3019af4566968657b9b2cd645688ea0fe79 /drivers/media/video/bttv-i2c.c | |
parent | d0fcdd7815e26f2e4a4ad239e2b464402a185f66 (diff) |
[PATCH] v4l: 893: rollback recent i2c change to solve tuner detection breakage
- Rollback recent i2c change to solve tuner detection breakage
Signed-off-by: Ricardo Cerqueira <v4l@cerqueira.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/bttv-i2c.c')
-rw-r--r-- | drivers/media/video/bttv-i2c.c | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/drivers/media/video/bttv-i2c.c b/drivers/media/video/bttv-i2c.c index aaabef26105a..1b3e0a769518 100644 --- a/drivers/media/video/bttv-i2c.c +++ b/drivers/media/video/bttv-i2c.c | |||
@@ -291,10 +291,12 @@ static struct i2c_adapter bttv_i2c_adap_hw_template = { | |||
291 | static int attach_inform(struct i2c_client *client) | 291 | static int attach_inform(struct i2c_client *client) |
292 | { | 292 | { |
293 | struct bttv *btv = i2c_get_adapdata(client->adapter); | 293 | struct bttv *btv = i2c_get_adapdata(client->adapter); |
294 | int radio_addr=ADDR_UNSET; | 294 | int addr=ADDR_UNSET; |
295 | |||
296 | |||
297 | if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr) | ||
298 | addr = bttv_tvcards[btv->c.type].tuner_addr; | ||
295 | 299 | ||
296 | if (ADDR_UNSET != bttv_tvcards[btv->c.type].radio_addr) | ||
297 | radio_addr = bttv_tvcards[btv->c.type].radio_addr; | ||
298 | 300 | ||
299 | if (bttv_debug) | 301 | if (bttv_debug) |
300 | printk(KERN_DEBUG "bttv%d: %s i2c attach [addr=0x%x,client=%s]\n", | 302 | printk(KERN_DEBUG "bttv%d: %s i2c attach [addr=0x%x,client=%s]\n", |
@@ -305,14 +307,16 @@ static int attach_inform(struct i2c_client *client) | |||
305 | 307 | ||
306 | if (btv->tuner_type != UNSET) { | 308 | if (btv->tuner_type != UNSET) { |
307 | struct tuner_setup tun_setup; | 309 | struct tuner_setup tun_setup; |
308 | struct tuner *t = i2c_get_clientdata(client); | ||
309 | 310 | ||
310 | if (t->type != UNSET && t->mode_mask == T_RADIO) { | 311 | if ((addr==ADDR_UNSET) || |
311 | tun_setup.type = t->type; | 312 | (addr==client->addr)) { |
312 | tun_setup.mode_mask = T_RADIO; | 313 | |
313 | tun_setup.addr = radio_addr; | 314 | tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV | T_RADIO; |
314 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | 315 | tun_setup.type = btv->tuner_type; |
316 | tun_setup.addr = addr; | ||
317 | bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
315 | } | 318 | } |
319 | |||
316 | } | 320 | } |
317 | 321 | ||
318 | return 0; | 322 | return 0; |