diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-06-19 21:35:57 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-06-20 18:36:25 +0100 |
commit | bfd3587760498227510acc1b18c4299c7922ffe3 (patch) | |
tree | e815a01cf398af5f19a93f838d7bbaaf14c64204 /drivers/video/backlight/mp3309c.c | |
parent | 7857f5c38d04a38e7a20060a6d370caf0424aa4e (diff) |
backlight: 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 add it, also remove commas after the sentinel entries.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20240619193558.2543645-2-u.kleine-koenig@baylibre.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/video/backlight/mp3309c.c')
-rw-r--r-- | drivers/video/backlight/mp3309c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/mp3309c.c b/drivers/video/backlight/mp3309c.c index a28036c964af..2bdb20129c81 100644 --- a/drivers/video/backlight/mp3309c.c +++ b/drivers/video/backlight/mp3309c.c @@ -400,7 +400,7 @@ static const struct of_device_id mp3309c_match_table[] = { MODULE_DEVICE_TABLE(of, mp3309c_match_table); static const struct i2c_device_id mp3309c_id[] = { - { "mp3309c", 0 }, + { "mp3309c" }, { } }; MODULE_DEVICE_TABLE(i2c, mp3309c_id); |