drivers/i2c: use simple i2c probe
authorStephen Kitt <steve@sk2.org>
Wed, 12 Oct 2022 16:36:47 +0000 (18:36 +0200)
committerWolfram Sang <wsa@kernel.org>
Mon, 5 Dec 2022 09:37:20 +0000 (10:37 +0100)
All these drivers have an i2c probe function which doesn't use the
"struct i2c_device_id *id" parameter, so they can trivially be
converted to the "probe_new" style of probe with a single argument.

This is part of an ongoing transition to single-argument i2c probe
functions. Old-style probe functions involve a call to i2c_match_id:
in drivers/i2c/i2c-core-base.c,

         /*
          * When there are no more users of probe(),
          * rename probe_new to probe.
          */
         if (driver->probe_new)
                 status = driver->probe_new(client);
         else if (driver->probe)
                 status = driver->probe(client,
                                        i2c_match_id(driver->id_table, client));
         else
                 status = -EINVAL;

Drivers which don't need the second parameter can be declared using
probe_new instead, avoiding the call to i2c_match_id. Drivers which do
can still be converted to probe_new-style, calling i2c_match_id
themselves (as is done currently for of_match_id).

This change was done using the following Coccinelle script, and fixed
up for whitespace changes:

@ rule1 @
identifier fn;
identifier client, id;
@@

- static int fn(struct i2c_client *client, const struct i2c_device_id *id)
+ static int fn(struct i2c_client *client)
{
...when != id
}

@ rule2 depends on rule1 @
identifier rule1.fn;
identifier driver;
@@

struct i2c_driver driver = {
-       .probe
+       .probe_new
                =
(
                   fn
|
-                  &fn
+                  fn
)
                ,
};

Signed-off-by: Stephen Kitt <steve@sk2.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
drivers/i2c/i2c-core-base.c
drivers/i2c/i2c-smbus.c

index 9aa7b9d9a485611f7630e397fb89702b3332f1ca..82478eab71af030904a53f427feeea88e94df2da 100644 (file)
@@ -1017,15 +1017,14 @@ static const struct i2c_device_id dummy_id[] = {
        { },
 };
 
-static int dummy_probe(struct i2c_client *client,
-                      const struct i2c_device_id *id)
+static int dummy_probe(struct i2c_client *client)
 {
        return 0;
 }
 
 static struct i2c_driver dummy_driver = {
        .driver.name    = "dummy",
-       .probe          = dummy_probe,
+       .probe_new      = dummy_probe,
        .id_table       = dummy_id,
 };
 
index c85710ed954838c7ff6e949f04f6c9e2447984dc..cd19546d31fcb0f9735f432ee9f15c86d2998b01 100644 (file)
@@ -112,8 +112,7 @@ static void smbalert_work(struct work_struct *work)
 }
 
 /* Setup SMBALERT# infrastructure */
-static int smbalert_probe(struct i2c_client *ara,
-                         const struct i2c_device_id *id)
+static int smbalert_probe(struct i2c_client *ara)
 {
        struct i2c_smbus_alert_setup *setup = dev_get_platdata(&ara->dev);
        struct i2c_smbus_alert *alert;
@@ -170,7 +169,7 @@ static struct i2c_driver smbalert_driver = {
        .driver = {
                .name   = "smbus_alert",
        },
-       .probe          = smbalert_probe,
+       .probe_new      = smbalert_probe,
        .remove         = smbalert_remove,
        .id_table       = smbalert_ids,
 };