diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2012-12-16 11:24:59 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-18 14:04:55 -0500 |
commit | 0176fd4d25d684ea38014b8e2c3221790d5c94d8 (patch) | |
tree | c7726184e89bb640d0218b7a5fa769bbce82243b /drivers/media/dvb-frontends/tda10071.c | |
parent | 5b7d8de7d2328f7b25fe4645eafee7e48f9b7df3 (diff) |
[media] tda10071: add tuner_i2c_addr to struct tda10071_config
The default i2c address for the tuner is 0x14,
allow this to be overridden with a configuration parameter
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Reviewed-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb-frontends/tda10071.c')
-rw-r--r-- | drivers/media/dvb-frontends/tda10071.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/tda10071.c b/drivers/media/dvb-frontends/tda10071.c index 16a4bc54dbe7..710362916f83 100644 --- a/drivers/media/dvb-frontends/tda10071.c +++ b/drivers/media/dvb-frontends/tda10071.c | |||
@@ -1064,7 +1064,7 @@ static int tda10071_init(struct dvb_frontend *fe) | |||
1064 | cmd.args[2] = 0x00; | 1064 | cmd.args[2] = 0x00; |
1065 | cmd.args[3] = 0x00; | 1065 | cmd.args[3] = 0x00; |
1066 | cmd.args[4] = 0x00; | 1066 | cmd.args[4] = 0x00; |
1067 | cmd.args[5] = 0x14; | 1067 | cmd.args[5] = (priv->cfg.tuner_i2c_addr) ? priv->cfg.tuner_i2c_addr : 0x14; |
1068 | cmd.args[6] = 0x00; | 1068 | cmd.args[6] = 0x00; |
1069 | cmd.args[7] = 0x03; | 1069 | cmd.args[7] = 0x03; |
1070 | cmd.args[8] = 0x02; | 1070 | cmd.args[8] = 0x02; |