From: Wolfram Sang <wsa+rene...@sang-engineering.com>

Move away from the deprecated API.

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

Signed-off-by: Corey Minyard <cminy...@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



_______________________________________________
Openipmi-developer mailing list
Openipmi-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openipmi-developer

Reply via email to