Commit ce668524 authored by Wolfram Sang's avatar Wolfram Sang Committed by Wolfram Sang

i2c: icy: convert to i2c_new_scanned_device

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: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: default avatarMax Staudt <max@enpas.org>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent c1d08475
...@@ -187,10 +187,10 @@ static int icy_probe(struct zorro_dev *z, ...@@ -187,10 +187,10 @@ static int icy_probe(struct zorro_dev *z,
ltc2990_info.fwnode = new_fwnode; ltc2990_info.fwnode = new_fwnode;
i2c->ltc2990_client = i2c->ltc2990_client =
i2c_new_probed_device(&i2c->adapter, i2c_new_scanned_device(&i2c->adapter,
&ltc2990_info, &ltc2990_info,
icy_ltc2990_addresses, icy_ltc2990_addresses,
NULL); NULL);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment