Messages in this thread Patch in this message |  | | From | Wolfram Sang <> | Subject | [PATCH RESEND 01/16] media: dvb-core: dvbdev: convert to use i2c_new_client_device() | Date | Mon, 16 Dec 2019 16:51:28 +0100 |
| |
Use the newer API returning an ERRPTR and use the new helper to bail out.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- drivers/media/dvb-core/dvbdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/dvb-core/dvbdev.c b/drivers/media/dvb-core/dvbdev.c index 917fe034af37..80b6a71aa33e 100644 --- a/drivers/media/dvb-core/dvbdev.c +++ b/drivers/media/dvb-core/dvbdev.c @@ -983,8 +983,8 @@ struct i2c_client *dvb_module_probe(const char *module_name, board_info->addr = addr; board_info->platform_data = platform_data; request_module(module_name); - client = i2c_new_device(adap, board_info); - if (client == NULL || client->dev.driver == NULL) { + client = i2c_new_client_device(adap, board_info); + if (!i2c_client_has_driver(client)) { kfree(board_info); return NULL; } -- 2.20.1
|  |