[media] tuner-core: remove usage of DIGITAL_TV

tuner-core has no business to do with digital TV. So, don't use
T_DIGITAL_TV on it, as it has no code to distinguish between
them, and nobody fills T_DIGITAL_TV right.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Mauro Carvalho Chehab 2011-02-15 09:30:50 -02:00
parent 2d351df443
commit ad020dc2fe
5 changed files with 11 additions and 20 deletions

View file

@ -185,8 +185,7 @@ void au0828_card_setup(struct au0828_dev *dev)
static u8 eeprom[256]; static u8 eeprom[256];
struct tuner_setup tun_setup; struct tuner_setup tun_setup;
struct v4l2_subdev *sd; struct v4l2_subdev *sd;
unsigned int mode_mask = T_ANALOG_TV | unsigned int mode_mask = T_ANALOG_TV;
T_DIGITAL_TV;
dprintk(1, "%s()\n", __func__); dprintk(1, "%s()\n", __func__);

View file

@ -3616,7 +3616,7 @@ void __devinit bttv_init_tuner(struct bttv *btv)
&btv->c.i2c_adap, "tuner", &btv->c.i2c_adap, "tuner",
0, v4l2_i2c_tuner_addrs(ADDRS_TV_WITH_DEMOD)); 0, v4l2_i2c_tuner_addrs(ADDRS_TV_WITH_DEMOD));
tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV; tun_setup.mode_mask = T_ANALOG_TV;
tun_setup.type = btv->tuner_type; tun_setup.type = btv->tuner_type;
tun_setup.addr = addr; tun_setup.addr = addr;

View file

@ -3165,9 +3165,7 @@ static void cx88_card_setup(struct cx88_core *core)
{ {
static u8 eeprom[256]; static u8 eeprom[256];
struct tuner_setup tun_setup; struct tuner_setup tun_setup;
unsigned int mode_mask = T_RADIO | unsigned int mode_mask = T_RADIO | T_ANALOG_TV;
T_ANALOG_TV |
T_DIGITAL_TV;
memset(&tun_setup, 0, sizeof(tun_setup)); memset(&tun_setup, 0, sizeof(tun_setup));

View file

@ -7333,9 +7333,7 @@ int saa7134_board_init1(struct saa7134_dev *dev)
static void saa7134_tuner_setup(struct saa7134_dev *dev) static void saa7134_tuner_setup(struct saa7134_dev *dev)
{ {
struct tuner_setup tun_setup; struct tuner_setup tun_setup;
unsigned int mode_mask = T_RADIO | unsigned int mode_mask = T_RADIO | T_ANALOG_TV;
T_ANALOG_TV |
T_DIGITAL_TV;
memset(&tun_setup, 0, sizeof(tun_setup)); memset(&tun_setup, 0, sizeof(tun_setup));
tun_setup.tuner_callback = saa7134_tuner_callback; tun_setup.tuner_callback = saa7134_tuner_callback;

View file

@ -497,7 +497,7 @@ static void tuner_lookup(struct i2c_adapter *adap,
device. If other devices appear then we need to device. If other devices appear then we need to
make this test more general. */ make this test more general. */
else if (*tv == NULL && pos->type != TUNER_TDA9887 && else if (*tv == NULL && pos->type != TUNER_TDA9887 &&
(pos->mode_mask & (T_ANALOG_TV | T_DIGITAL_TV))) (pos->mode_mask & T_ANALOG_TV))
*tv = pos; *tv = pos;
} }
} }
@ -565,8 +565,7 @@ static int tuner_probe(struct i2c_client *client,
} else { } else {
/* Default is being tda9887 */ /* Default is being tda9887 */
t->type = TUNER_TDA9887; t->type = TUNER_TDA9887;
t->mode_mask = T_RADIO | T_ANALOG_TV | t->mode_mask = T_RADIO | T_ANALOG_TV;
T_DIGITAL_TV;
goto register_client; goto register_client;
} }
break; break;
@ -596,7 +595,7 @@ static int tuner_probe(struct i2c_client *client,
first found TV tuner. */ first found TV tuner. */
tuner_lookup(t->i2c->adapter, &radio, &tv); tuner_lookup(t->i2c->adapter, &radio, &tv);
if (tv == NULL) { if (tv == NULL) {
t->mode_mask = T_ANALOG_TV | T_DIGITAL_TV; t->mode_mask = T_ANALOG_TV;
if (radio == NULL) if (radio == NULL)
t->mode_mask |= T_RADIO; t->mode_mask |= T_RADIO;
tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask); tuner_dbg("Setting mode_mask to 0x%02x\n", t->mode_mask);
@ -607,18 +606,15 @@ static int tuner_probe(struct i2c_client *client,
/* Sets a default mode */ /* Sets a default mode */
if (t->mode_mask & T_ANALOG_TV) if (t->mode_mask & T_ANALOG_TV)
t->mode = V4L2_TUNER_ANALOG_TV; t->mode = V4L2_TUNER_ANALOG_TV;
else if (t->mode_mask & T_RADIO)
t->mode = V4L2_TUNER_RADIO;
else else
t->mode = V4L2_TUNER_DIGITAL_TV; t->mode = V4L2_TUNER_RADIO;
set_type(client, t->type, t->mode_mask, t->config, t->fe.callback); set_type(client, t->type, t->mode_mask, t->config, t->fe.callback);
list_add_tail(&t->list, &tuner_list); list_add_tail(&t->list, &tuner_list);
tuner_info("Tuner %d found with type(s)%s%s%s.\n", tuner_info("Tuner %d found with type(s)%s%s.\n",
t->type, t->type,
t->mode_mask & T_RADIO ? " radio" : "", t->mode_mask & T_RADIO ? " Radio" : "",
t->mode_mask & T_ANALOG_TV ? " TV" : "", t->mode_mask & T_ANALOG_TV ? " TV" : "");
t->mode_mask & T_ANALOG_TV ? " DTV" : "");
return 0; return 0;
} }