From: Uwe Kleine-König Date: Fri, 18 Nov 2022 22:44:06 +0000 (+0100) Subject: platform/chrome: cros_ec: Convert to i2c's .probe_new() X-Git-Tag: v6.6.7~4016^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9e510dc92df270756b6a42d98c738525d01e8c3;p=platform%2Fkernel%2Flinux-starfive.git platform/chrome: cros_ec: Convert to i2c's .probe_new() The probe function doesn't make use of the i2c_device_id * parameter so it can be trivially converted. Signed-off-by: Uwe Kleine-König Reviewed-by: Guenter Roeck Signed-off-by: Tzung-Bi Shih Link: https://lore.kernel.org/r/20221118224540.619276-513-uwe@kleine-koenig.org --- diff --git a/drivers/platform/chrome/cros_ec_i2c.c b/drivers/platform/chrome/cros_ec_i2c.c index b6823c6..dbe698f 100644 --- a/drivers/platform/chrome/cros_ec_i2c.c +++ b/drivers/platform/chrome/cros_ec_i2c.c @@ -286,8 +286,7 @@ done: return ret; } -static int cros_ec_i2c_probe(struct i2c_client *client, - const struct i2c_device_id *dev_id) +static int cros_ec_i2c_probe(struct i2c_client *client) { struct device *dev = &client->dev; struct cros_ec_device *ec_dev = NULL; @@ -373,7 +372,7 @@ static struct i2c_driver cros_ec_driver = { .of_match_table = of_match_ptr(cros_ec_i2c_of_match), .pm = &cros_ec_i2c_pm_ops, }, - .probe = cros_ec_i2c_probe, + .probe_new = cros_ec_i2c_probe, .remove = cros_ec_i2c_remove, .id_table = cros_ec_i2c_id, };