diff options
author | Ricardo Cerqueira <v4l@cerqueira.org> | 2005-11-09 00:38:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 10:56:26 -0500 |
commit | 24d412289d5508f033d11154f981b478f8831c0d (patch) | |
tree | 933c27f9b524361cf1c0210dba6b5f952cc3102a /drivers | |
parent | 3b64e8e238217ebd3d847ca19ead631124a2ed14 (diff) |
[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')
-rw-r--r-- | drivers/media/video/bttv-cards.c | 4 | ||||
-rw-r--r-- | drivers/media/video/bttv-i2c.c | 11 |
2 files changed, 7 insertions, 8 deletions
diff --git a/drivers/media/video/bttv-cards.c b/drivers/media/video/bttv-cards.c index 695a67e9edd7..89aa5cbb8b9e 100644 --- a/drivers/media/video/bttv-cards.c +++ b/drivers/media/video/bttv-cards.c | |||
@@ -2721,13 +2721,11 @@ struct tvcard bttv_tvcards[] = { | |||
2721 | .audiomux = { 0, 1, 2, 2, 3 }, | 2721 | .audiomux = { 0, 1, 2, 2, 3 }, |
2722 | .needs_tvaudio = 0, | 2722 | .needs_tvaudio = 0, |
2723 | .pll = PLL_28, | 2723 | .pll = PLL_28, |
2724 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | 2724 | .tuner_type = TUNER_TENA_9533_DI, |
2725 | .tuner_addr = ADDR_UNSET, | 2725 | .tuner_addr = ADDR_UNSET, |
2726 | .radio_addr = ADDR_UNSET, | 2726 | .radio_addr = ADDR_UNSET, |
2727 | .has_remote = 1, | 2727 | .has_remote = 1, |
2728 | #if 0 | ||
2729 | .has_radio = 1, | 2728 | .has_radio = 1, |
2730 | #endif | ||
2731 | }, | 2729 | }, |
2732 | /* ---- card 0x8a ---------------------------------- */ | 2730 | /* ---- card 0x8a ---------------------------------- */ |
2733 | [BTTV_BOARD_PV_BT878P_2E] = { | 2731 | [BTTV_BOARD_PV_BT878P_2E] = { |
diff --git a/drivers/media/video/bttv-i2c.c b/drivers/media/video/bttv-i2c.c index e509ed91a290..5ad335705e1f 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) | |||
308 | 308 | ||
309 | if (btv->tuner_type != UNSET) { | 309 | if (btv->tuner_type != UNSET) { |
310 | struct tuner_setup tun_setup; | 310 | struct tuner_setup tun_setup; |
311 | struct tuner *t = i2c_get_clientdata(client); | ||
311 | 312 | ||
312 | if ((addr==ADDR_UNSET)||(addr==client->addr)) { | 313 | if ((addr==ADDR_UNSET)||(addr==client->addr)) { |
313 | tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV; | 314 | tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV; |
314 | tun_setup.type = btv->tuner_type; | 315 | tun_setup.type = btv->tuner_type; |
315 | tun_setup.addr = ADDR_UNSET; | 316 | tun_setup.addr = ADDR_UNSET; |
316 | 317 | ||
317 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
318 | } | 318 | } |
319 | if ((radio_addr==ADDR_UNSET)||(radio_addr==client->addr)) { | 319 | |
320 | if (t->type != UNSET && t->mode_mask == T_RADIO) { | ||
321 | tun_setup.type = t->type; | ||
320 | tun_setup.mode_mask = T_RADIO; | 322 | tun_setup.mode_mask = T_RADIO; |
321 | tun_setup.type = btv->tuner_type; | ||
322 | tun_setup.addr = ADDR_UNSET; | 323 | tun_setup.addr = ADDR_UNSET; |
323 | |||
324 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
325 | } | 324 | } |
325 | |||
326 | client->driver->command (client, TUNER_SET_TYPE_ADDR, &tun_setup); | ||
326 | } | 327 | } |
327 | 328 | ||
328 | if (btv->pinnacle_id != UNSET) | 329 | if (btv->pinnacle_id != UNSET) |