Commit 6e040e6f authored by Wolfram Sang's avatar Wolfram Sang Committed by Mauro Carvalho Chehab

media: usb: dvb-usb: dib0700_devices: convert to use i2c_new_client_device()

Use the newer API returning an ERRPTR and use the new helper to bail
out.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 3dd01212
......@@ -3772,8 +3772,8 @@ static int xbox_one_attach(struct dvb_usb_adapter *adap)
info.addr = 0x18;
info.platform_data = &mn88472_config;
request_module(info.type);
client_demod = i2c_new_device(&d->i2c_adap, &info);
if (client_demod == NULL || client_demod->dev.driver == NULL)
client_demod = i2c_new_client_device(&d->i2c_adap, &info);
if (!i2c_client_has_driver(client_demod))
goto fail_demod_device;
if (!try_module_get(client_demod->dev.driver->owner))
goto fail_demod_module;
......@@ -3800,8 +3800,8 @@ static int xbox_one_attach(struct dvb_usb_adapter *adap)
info.platform_data = &tda18250_config;
request_module(info.type);
client_tuner = i2c_new_device(&adap->dev->i2c_adap, &info);
if (client_tuner == NULL || client_tuner->dev.driver == NULL)
client_tuner = i2c_new_client_device(&adap->dev->i2c_adap, &info);
if (!i2c_client_has_driver(client_tuner))
goto fail_tuner_device;
if (!try_module_get(client_tuner->dev.driver->owner))
goto fail_tuner_module;
......
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