Commit dd0a6fe2 authored by nibble.max's avatar nibble.max Committed by Mauro Carvalho Chehab

[media] dvb-usb-dvbsky: fix i2c adapter for sp2 device

It is wrong that sp2 device uses the i2c adapter from m88ds3103 return.
sp2 device sits on the same i2c bus with m88ds3103, not behind m88ds3103.
Signed-off-by: default avatarNibble Max <nibble.max@gmail.com>
Reviewed-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent b6851419
...@@ -479,7 +479,7 @@ static int dvbsky_s960c_attach(struct dvb_usb_adapter *adap) ...@@ -479,7 +479,7 @@ static int dvbsky_s960c_attach(struct dvb_usb_adapter *adap)
info.addr = 0x40; info.addr = 0x40;
info.platform_data = &sp2_config; info.platform_data = &sp2_config;
request_module("sp2"); request_module("sp2");
client_ci = i2c_new_device(i2c_adapter, &info); client_ci = i2c_new_device(&d->i2c_adap, &info);
if (client_ci == NULL || client_ci->dev.driver == NULL) { if (client_ci == NULL || client_ci->dev.driver == NULL) {
ret = -ENODEV; ret = -ENODEV;
goto fail_ci_device; goto fail_ci_device;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment