diff options
author | Ricardo Cerqueira <v4l@cerqueira.org> | 2005-11-08 21:38:21 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 07:56:26 -0800 |
commit | 24d412289d5508f033d11154f981b478f8831c0d (patch) | |
tree | 933c27f9b524361cf1c0210dba6b5f952cc3102a /drivers/media/video/bttv-i2c.c | |
parent | 3b64e8e238217ebd3d847ca19ead631124a2ed14 (diff) | |
download | linux-3.10-24d412289d5508f033d11154f981b478f8831c0d.tar.gz linux-3.10-24d412289d5508f033d11154f981b478f8831c0d.tar.bz2 linux-3.10-24d412289d5508f033d11154f981b478f8831c0d.zip |
[PATCH] v4l: 871: fixed bttv to accept radio devices like tea5767
- Fixed bttv to accept radio devices like tea5767
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 | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/media/video/bttv-i2c.c b/drivers/media/video/bttv-i2c.c index e509ed91a29..5ad335705e1 100644 --- a/drivers/media/video/bttv-i2c.c +++ b/drivers/media/video/bttv-i2c.c @@ -308,21 +308,22 @@ static int attach_inform(struct i2c_client *client) if (btv->tuner_type != UNSET) { struct tuner_setup tun_setup; + struct tuner *t = i2c_get_clientdata(client); if ((addr==ADDR_UNSET)||(addr==client->addr)) { tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV; tun_setup.type = btv->tuner_type; tun_setup.addr = ADDR_UNSET; - client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); } - if ((radio_addr==ADDR_UNSET)||(radio_addr==client->addr)) { + + if (t->type != UNSET && t->mode_mask == T_RADIO) { + tun_setup.type = t->type; tun_setup.mode_mask = T_RADIO; - tun_setup.type = btv->tuner_type; tun_setup.addr = ADDR_UNSET; - - client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); } + + client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); } if (btv->pinnacle_id != UNSET) |