]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
hwmon: (isl28022) Drop explicit initialization of struct i2c_device_id::driver_data...
authorUwe Kleine-König <u.kleine-koenig@baylibre.com>
Wed, 4 Dec 2024 14:08:57 +0000 (15:08 +0100)
committerGuenter Roeck <linux@roeck-us.net>
Sat, 14 Dec 2024 16:00:44 +0000 (08:00 -0800)
This driver doesn't use the driver_data member of struct i2c_device_id,
so don't explicitly initialize it.

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.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20241204140857.1691402-2-u.kleine-koenig@baylibre.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/isl28022.c

index 7748f6b8a5341dc416651513ad8be6819c41e4f4..3f9b4520b53ef3e50ad6720cd7447e52282dcbb8 100644 (file)
@@ -486,7 +486,7 @@ static int isl28022_probe(struct i2c_client *client)
 }
 
 static const struct i2c_device_id isl28022_ids[] = {
-       { "isl28022", 0},
+       { "isl28022" },
        { /* LIST END */ }
 };
 MODULE_DEVICE_TABLE(i2c, isl28022_ids);