aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2020-01-07 18:47:44 +0100
committerWolfram Sang <wsa@the-dreams.de>2020-01-15 20:40:12 +0100
commit5f0155b44e1e053e4fd420c48af020524cea299e (patch)
tree3dc46267e8ab8319208c36a97dda8fb893abb348 /drivers/i2c
parenti2c: i2c-core-base: convert to use i2c_new_client_device() (diff)
downloadlinux-dev-5f0155b44e1e053e4fd420c48af020524cea299e.tar.xz
linux-dev-5f0155b44e1e053e4fd420c48af020524cea299e.zip
i2c: i2c-core-of: 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>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/i2c-core-of.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/i2c/i2c-core-of.c b/drivers/i2c/i2c-core-of.c
index e4d296b40baa..6787c1f71483 100644
--- a/drivers/i2c/i2c-core-of.c
+++ b/drivers/i2c/i2c-core-of.c
@@ -75,11 +75,10 @@ static struct i2c_client *of_i2c_register_device(struct i2c_adapter *adap,
if (ret)
return ERR_PTR(ret);
- client = i2c_new_device(adap, &info);
- if (!client) {
+ client = i2c_new_client_device(adap, &info);
+ if (IS_ERR(client))
dev_err(&adap->dev, "of_i2c: Failure registering %pOF\n", node);
- return ERR_PTR(-EINVAL);
- }
+
return client;
}