summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/ltc2990.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2024-04-30 10:56:53 +0200
committerGuenter Roeck <linux@roeck-us.net>2024-05-01 16:47:49 +0200
commitd8a66f3621c2886ad328d9df53349fc10251f583 (patch)
tree86112744d7ce5631ec828790f29b08af5c1fe320 /drivers/hwmon/ltc2990.c
parenthwmon: (max31790) revise the scale to write pwm (diff)
downloadlinux-d8a66f3621c2886ad328d9df53349fc10251f583.tar.xz
linux-d8a66f3621c2886ad328d9df53349fc10251f583.zip
hwmon: Drop explicit initialization of struct i2c_device_id::driver_data to 0
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. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20240430085654.1028864-2-u.kleine-koenig@pengutronix.de Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/ltc2990.c')
-rw-r--r--drivers/hwmon/ltc2990.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/ltc2990.c b/drivers/hwmon/ltc2990.c
index 1ad362c0fd2c..f1c1933c52cf 100644
--- a/drivers/hwmon/ltc2990.c
+++ b/drivers/hwmon/ltc2990.c
@@ -259,7 +259,7 @@ static int ltc2990_i2c_probe(struct i2c_client *i2c)
}
static const struct i2c_device_id ltc2990_i2c_id[] = {
- { "ltc2990", 0 },
+ { "ltc2990" },
{}
};
MODULE_DEVICE_TABLE(i2c, ltc2990_i2c_id);