hwmon: (f75375s) Remove use of i2c_match_id()
authorAndrew Davis <afd@ti.com>
Wed, 3 Apr 2024 20:36:11 +0000 (15:36 -0500)
committerGuenter Roeck <linux@roeck-us.net>
Sat, 8 Jun 2024 23:07:32 +0000 (16:07 -0700)
The function i2c_match_id() is used to fetch the matching ID from
the i2c_device_id table. This is often used to then retrieve the
matching driver_data. This can be done in one step with the helper
i2c_get_match_data().

This helper has a couple other benefits:
 * It doesn't need the i2c_device_id passed in so we do not need
   to have that forward declared, allowing us to remove those or
   move the i2c_device_id table down to its more natural spot
   with the other module info.
 * It also checks for device match data, which allows for OF and
   ACPI based probing. That means we do not have to manually check
   those first and can remove those checks.

Signed-off-by: Andrew Davis <afd@ti.com>
Link: https://lore.kernel.org/r/20240403203633.914389-10-afd@ti.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/f75375s.c

index 8c572bb64f5dc1e6243948c4b6a30aa9caffef46..7e867f132420134d8b63a6d623aadec92edb9423 100644 (file)
@@ -111,31 +111,6 @@ struct f75375_data {
        s8 temp_max_hyst[2];
 };
 
-static int f75375_detect(struct i2c_client *client,
-                        struct i2c_board_info *info);
-static int f75375_probe(struct i2c_client *client);
-static void f75375_remove(struct i2c_client *client);
-
-static const struct i2c_device_id f75375_id[] = {
-       { "f75373", f75373 },
-       { "f75375", f75375 },
-       { "f75387", f75387 },
-       { }
-};
-MODULE_DEVICE_TABLE(i2c, f75375_id);
-
-static struct i2c_driver f75375_driver = {
-       .class = I2C_CLASS_HWMON,
-       .driver = {
-               .name = "f75375",
-       },
-       .probe = f75375_probe,
-       .remove = f75375_remove,
-       .id_table = f75375_id,
-       .detect = f75375_detect,
-       .address_list = normal_i2c,
-};
-
 static inline int f75375_read8(struct i2c_client *client, u8 reg)
 {
        return i2c_smbus_read_byte_data(client, reg);
@@ -830,7 +805,7 @@ static int f75375_probe(struct i2c_client *client)
 
        i2c_set_clientdata(client, data);
        mutex_init(&data->update_lock);
-       data->kind = i2c_match_id(f75375_id, client)->driver_data;
+       data->kind = (uintptr_t)i2c_get_match_data(client);
 
        err = sysfs_create_group(&client->dev.kobj, &f75375_group);
        if (err)
@@ -901,6 +876,25 @@ static int f75375_detect(struct i2c_client *client,
        return 0;
 }
 
+static const struct i2c_device_id f75375_id[] = {
+       { "f75373", f75373 },
+       { "f75375", f75375 },
+       { "f75387", f75387 },
+       { }
+};
+MODULE_DEVICE_TABLE(i2c, f75375_id);
+
+static struct i2c_driver f75375_driver = {
+       .class = I2C_CLASS_HWMON,
+       .driver = {
+               .name = "f75375",
+       },
+       .probe = f75375_probe,
+       .remove = f75375_remove,
+       .id_table = f75375_id,
+       .detect = f75375_detect,
+       .address_list = normal_i2c,
+};
 module_i2c_driver(f75375_driver);
 
 MODULE_AUTHOR("Riku Voipio");