OSDN Git Service

i2c: icy: convert to i2c_new_scanned_device
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Wed, 6 Nov 2019 09:50:20 +0000 (10:50 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 28 Nov 2019 16:15:48 +0000 (17:15 +0100)
Move from the deprecated i2c_new_probed_device() to the new
i2c_new_scanned_device(). Make use of the new ERRPTR if suitable.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Max Staudt <max@enpas.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-icy.c

index 9d9fd78..271470f 100644 (file)
@@ -187,10 +187,10 @@ static int icy_probe(struct zorro_dev *z,
                ltc2990_info.fwnode = new_fwnode;
 
                i2c->ltc2990_client =
-                       i2c_new_probed_device(&i2c->adapter,
-                                             &ltc2990_info,
-                                             icy_ltc2990_addresses,
-                                             NULL);
+                       i2c_new_scanned_device(&i2c->adapter,
+                                              &ltc2990_info,
+                                              icy_ltc2990_addresses,
+                                              NULL);
        }
 
        return 0;