V4L/DVB (7055): make tuner names consistent with standard cases
authorMichael Krufky <mkrufky@linuxtv.org>
Mon, 21 Jan 2008 13:55:37 +0000 (10:55 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 25 Jan 2008 21:05:10 +0000 (19:05 -0200)
Change TDA9887 to tda9887.

TDA8290 shall reflect the actual hardware present in its name,
  ie:

tda8295+18271
tda8290+8275a

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/tda8290.c
drivers/media/video/tda9887.c

index 3e593a3d90317a99f95d28bdecbc772e6ffcb9ed..55bc89a6f0694c7f3d8e35e6804f4fb8d01eda5f 100644 (file)
@@ -645,9 +645,6 @@ static int tda8295_probe(struct tuner_i2c_props *i2c_props)
 }
 
 static struct analog_demod_ops tda8290_ops = {
-       .info           = {
-               .name   = "TDA8290",
-       },
        .set_params     = tda8290_set_params,
        .has_signal     = tda8290_has_signal,
        .standby        = tda8290_standby,
@@ -656,9 +653,6 @@ static struct analog_demod_ops tda8290_ops = {
 };
 
 static struct analog_demod_ops tda8295_ops = {
-       .info           = {
-               .name   = "TDA8295",
-       },
        .set_params     = tda8295_set_params,
        .has_signal     = tda8295_has_signal,
        .standby        = tda8295_standby,
@@ -731,6 +725,8 @@ struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
        }
        tuner_info("type set to %s\n", name);
 
+       fe->ops.analog_ops.info.name = name;
+
        if (priv->ver & TDA8290) {
                tda8290_init_tuner(fe);
                tda8290_init_if(fe);
index d3aabe2d146b3124c05c54bec0325b4c97c8d605..106c93b8203fea587562240b37b8d0564cbb21a3 100644 (file)
@@ -650,7 +650,7 @@ static void tda9887_release(struct dvb_frontend *fe)
 
 static struct analog_demod_ops tda9887_ops = {
        .info           = {
-               .name   = "TDA9887",
+               .name   = "tda9887",
        },
        .set_params     = tda9887_set_params,
        .standby        = tda9887_standby,
This page took 0.058701 seconds and 5 git commands to generate.