mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 15:42:46 +00:00
i2c: nvidia-gpu: convert to use i2c_new_client_device()
Move away from the deprecated API and return the shiny new ERRPTR where useful. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
41d06630b4
commit
7fd0379f86
1 changed files with 3 additions and 3 deletions
|
@ -280,9 +280,9 @@ static int gpu_populate_client(struct gpu_i2c_dev *i2cd, int irq)
|
||||||
i2cd->gpu_ccgx_ucsi->addr = 0x8;
|
i2cd->gpu_ccgx_ucsi->addr = 0x8;
|
||||||
i2cd->gpu_ccgx_ucsi->irq = irq;
|
i2cd->gpu_ccgx_ucsi->irq = irq;
|
||||||
i2cd->gpu_ccgx_ucsi->properties = ccgx_props;
|
i2cd->gpu_ccgx_ucsi->properties = ccgx_props;
|
||||||
i2cd->ccgx_client = i2c_new_device(&i2cd->adapter, i2cd->gpu_ccgx_ucsi);
|
i2cd->ccgx_client = i2c_new_client_device(&i2cd->adapter, i2cd->gpu_ccgx_ucsi);
|
||||||
if (!i2cd->ccgx_client)
|
if (IS_ERR(i2cd->ccgx_client))
|
||||||
return -ENODEV;
|
return PTR_ERR(i2cd->ccgx_client);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue