]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] v4l: 871: fixed bttv to accept radio devices like tea5767
authorRicardo Cerqueira <v4l@cerqueira.org>
Wed, 9 Nov 2005 05:38:21 +0000 (21:38 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 9 Nov 2005 15:56:26 +0000 (07:56 -0800)
- 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>
drivers/media/video/bttv-cards.c
drivers/media/video/bttv-i2c.c

index 695a67e9edd7e080cb07796d34749bdf2bb3a475..89aa5cbb8b9e182e4530f8260a7cf3db1db45fa1 100644 (file)
@@ -2721,13 +2721,11 @@ struct tvcard bttv_tvcards[] = {
                .audiomux       = { 0, 1, 2, 2, 3 },
                .needs_tvaudio  = 0,
                .pll            = PLL_28,
-               .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
+               .tuner_type     = TUNER_TENA_9533_DI,
                .tuner_addr     = ADDR_UNSET,
                .radio_addr     = ADDR_UNSET,
                .has_remote     = 1,
-       #if 0
                .has_radio      = 1,
-       #endif
        },
                /* ---- card 0x8a ---------------------------------- */
        [BTTV_BOARD_PV_BT878P_2E] = {
index e509ed91a290dc9a3a9f6a9d16750377fc993fb1..5ad335705e1f851c636d69348219ce6bd2071fb9 100644 (file)
@@ -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)