hwmon: Drop explicit initialization of struct i2c_device_id::driver_data to 0 (part 2)
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 8 May 2024 07:20:26 +0000 (09:20 +0200)
committerGuenter Roeck <linux@roeck-us.net>
Thu, 9 May 2024 19:56:06 +0000 (12:56 -0700)
These drivers don't use the driver_data member of struct i2c_device_id,
so don't explicitly initialize this member.

This prepares putting driver_data in an anonymous union which requires
either no initialization or named designators. But it's also a nice
cleanup on its own.

This is a follow up to commit d8a66f3621c2 ("hwmon: Drop explicit
initialization of struct i2c_device_id::driver_data to 0") which I
created before identifying a few corner cases in my conversion script.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20240508072027.2119857-2-u.kleine-koenig@pengutronix.de
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/lm87.c
drivers/hwmon/lm95241.c
drivers/hwmon/max6621.c
drivers/hwmon/pmbus/max15301.c

index 03964127a12a91cc31627dfa6785e716bc56517d..d2d970e73c61653e49f386921568d734db92bf7a 100644 (file)
@@ -976,7 +976,7 @@ static int lm87_probe(struct i2c_client *client)
 
 static const struct i2c_device_id lm87_id[] = {
        { "lm87" },
-       { "adm1024", 0 },
+       { "adm1024" },
        { }
 };
 MODULE_DEVICE_TABLE(i2c, lm87_id);
index 4ad69a2de105bf6233339fe5f070a7adcc8572ae..cad0a0ff8416bcd274639efe8a016b24dcc244f7 100644 (file)
@@ -458,7 +458,7 @@ static int lm95241_probe(struct i2c_client *client)
 /* Driver data (common to all clients) */
 static const struct i2c_device_id lm95241_id[] = {
        { "lm95231" },
-       { "lm95241", 0 },
+       { "lm95241" },
        { }
 };
 MODULE_DEVICE_TABLE(i2c, lm95241_id);
index 05426cde0e36353ebeabdd2ac544b0c68eb4ec6d..a7066f3a0bb4e52893792baef293ef7c7c615f6c 100644 (file)
@@ -537,7 +537,7 @@ static int max6621_probe(struct i2c_client *client)
 }
 
 static const struct i2c_device_id max6621_id[] = {
-       { MAX6621_DRV_NAME, 0 },
+       { MAX6621_DRV_NAME },
        { }
 };
 MODULE_DEVICE_TABLE(i2c, max6621_id);
index c79cdf10bbecb09c3c1a0d01dd0eb63c77dc256a..986404fe6a31c20cb8cc7f761ed40e39bb9f051b 100644 (file)
@@ -23,8 +23,8 @@
 #include "pmbus.h"
 
 static const struct i2c_device_id max15301_id[] = {
-       {"bmr461"},
-       {"max15301", 0},
+       { "bmr461" },
+       { "max15301" },
        {}
 };
 MODULE_DEVICE_TABLE(i2c, max15301_id);