On 11/06/2019 10:50 AM, Wolfram Sang wrote: > 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@xxxxxxxxxxxxxxxxxxxx> > --- > drivers/i2c/busses/i2c-icy.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-icy.c b/drivers/i2c/busses/i2c-icy.c > index 8382eb64b424..07baa4d8de39 100644 > --- a/drivers/i2c/busses/i2c-icy.c > +++ b/drivers/i2c/busses/i2c-icy.c > @@ -188,10 +188,10 @@ static int icy_probe(struct zorro_dev *z, > ltc2990_info.fwnode = new_fwnode; > > i2c->ltc2990_client = > - i2c_new_probed_device(&i2c->adapter, > - <c2990_info, > - icy_ltc2990_addresses, > - NULL); > + i2c_new_scanned_device(&i2c->adapter, > + <c2990_info, > + icy_ltc2990_addresses, > + NULL); Looks good, thank you for patching this! i2c_unregister_device() checks the pointer using IS_ERR_OR_NULL(), so the simple logic in i2c-icy (where the pointer is not checked on i2c_new_scanned_device()) still works. Acked-by: Max Staudt <max@xxxxxxxxx>