diff options
author | Antti Palosaari <crope@iki.fi> | 2010-09-12 21:02:55 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-21 01:05:52 -0200 |
commit | ed19a5db7826a150f0746123b23ac5cb0b2621f8 (patch) | |
tree | 4aad710da364c0e1157478e7c93b644cb982a5b8 | |
parent | 9b22edd4b0f3520bc1279338d52dc63e76852bef (diff) | |
download | talos-op-linux-ed19a5db7826a150f0746123b23ac5cb0b2621f8.tar.gz talos-op-linux-ed19a5db7826a150f0746123b23ac5cb0b2621f8.zip |
V4L/DVB: af9015: use value from config instead hardcoded one
Replace 2nd demod default address 0x3a with value got from eeprom config.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/dvb-usb/af9015.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/af9015.c b/drivers/media/dvb/dvb-usb/af9015.c index f82f50d6acf5..f63cb18b37f6 100644 --- a/drivers/media/dvb/dvb-usb/af9015.c +++ b/drivers/media/dvb/dvb-usb/af9015.c @@ -496,7 +496,8 @@ static int af9015_copy_firmware(struct dvb_usb_device *d) /* wait 2nd demodulator ready */ msleep(100); - ret = af9015_read_reg_i2c(d, 0x3a, 0x98be, &val); + ret = af9015_read_reg_i2c(d, + af9015_af9013_config[1].demod_address, 0x98be, &val); if (ret) goto error; else |