aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/common/tuners/tda8290.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/common/tuners/tda8290.c')
-rw-r--r--drivers/media/common/tuners/tda8290.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/common/tuners/tda8290.c b/drivers/media/common/tuners/tda8290.c
index 0ebb5b525e5..91204d3f282 100644
--- a/drivers/media/common/tuners/tda8290.c
+++ b/drivers/media/common/tuners/tda8290.c
@@ -578,16 +578,16 @@ static int tda829x_find_tuner(struct dvb_frontend *fe)
578 578
579 if ((data == 0x83) || (data == 0x84)) { 579 if ((data == 0x83) || (data == 0x84)) {
580 priv->ver |= TDA18271; 580 priv->ver |= TDA18271;
581 tda18271_attach(fe, priv->tda827x_addr, 581 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
582 priv->i2c_props.adap, 582 priv->i2c_props.adap, &tda829x_tda18271_config);
583 &tda829x_tda18271_config);
584 } else { 583 } else {
585 if ((data & 0x3c) == 0) 584 if ((data & 0x3c) == 0)
586 priv->ver |= TDA8275; 585 priv->ver |= TDA8275;
587 else 586 else
588 priv->ver |= TDA8275A; 587 priv->ver |= TDA8275A;
589 588
590 tda827x_attach(fe, priv->tda827x_addr, priv->i2c_props.adap, &priv->cfg); 589 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
590 priv->i2c_props.adap, &priv->cfg);
591 priv->cfg.switch_addr = priv->i2c_props.addr; 591 priv->cfg.switch_addr = priv->i2c_props.addr;
592 } 592 }
593 if (fe->ops.tuner_ops.init) 593 if (fe->ops.tuner_ops.init)