diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-09-18 14:31:49 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-11-10 14:48:05 -0800 |
commit | a7e03f96791e098ebde43acce6b04283f10815db (patch) | |
tree | 7f39bbc294661ad5a846d75241e7fdc5cb9ec443 /drivers/hwmon/amc6821.c | |
parent | 2d5404caa8c7bb5c4e0435f94b28834ae5456623 (diff) | |
download | lwn-a7e03f96791e098ebde43acce6b04283f10815db.tar.gz lwn-a7e03f96791e098ebde43acce6b04283f10815db.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.
While touching these structs, also remove commas after the sentinel
entries and use a consistent indention style.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Message-ID: <20240918123150.1540161-7-u.kleine-koenig@baylibre.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/amc6821.c')
-rw-r--r-- | drivers/hwmon/amc6821.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/amc6821.c b/drivers/hwmon/amc6821.c index ac64b407ed0e..e86027f850c9 100644 --- a/drivers/hwmon/amc6821.c +++ b/drivers/hwmon/amc6821.c @@ -927,7 +927,7 @@ static int amc6821_probe(struct i2c_client *client) } static const struct i2c_device_id amc6821_id[] = { - { "amc6821", 0 }, + { "amc6821" }, { } }; |