lkml.org 
[lkml]   [2020]   [May]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] char: ipmi: convert to use i2c_new_client_device()
Date
From: Wolfram Sang <wsa+renesas@sang-engineering.com>

Move away from the deprecated API.

Based on a patch by Wolfram Sang <wsa+renesas@sang-engineering.com>.

Signed-off-by: Corey Minyard <cminyard@mvista.com>
---
I think this works.

drivers/char/ipmi/ipmi_ssif.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/char/ipmi/ipmi_ssif.c b/drivers/char/ipmi/ipmi_ssif.c
index b7145f370d3b..65563e5e5731 100644
--- a/drivers/char/ipmi/ipmi_ssif.c
+++ b/drivers/char/ipmi/ipmi_ssif.c
@@ -1943,12 +1943,14 @@ static int ssif_probe(struct i2c_client *client, const struct i2c_device_id *id)
static int ssif_adapter_handler(struct device *adev, void *opaque)
{
struct ssif_addr_info *addr_info = opaque;
+ struct i2c_client *cl;

if (adev->type != &i2c_adapter_type)
return 0;

- addr_info->added_client = i2c_new_device(to_i2c_adapter(adev),
- &addr_info->binfo);
+ cl = i2c_new_client_device(to_i2c_adapter(adev), &addr_info->binfo);
+ if (!IS_ERR(cl))
+ addr_info->added_client = cl;

if (!addr_info->adapter_name)
return 1; /* Only try the first I2C adapter by default. */
--
2.17.1
\
 
 \ /
  Last update: 2020-05-12 23:47    [W:0.246 / U:0.056 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site