diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2024-05-13 10:05:26 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-27 02:32:50 +0200 |
commit | aea07a986c2f9d456fcdad21ad14cfc49b3114ab (patch) | |
tree | 1aed6a1aac9139e43710b1f2392c74c47d2d2d9e /drivers/regulator/lp3972.c | |
parent | Linux 6.10-rc1 (diff) | |
download | linux-aea07a986c2f9d456fcdad21ad14cfc49b3114ab.tar.xz linux-aea07a986c2f9d456fcdad21ad14cfc49b3114ab.zip |
regulator: 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@pengutronix.de>
Link: https://msgid.link/r/20240513080525.2353168-2-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/lp3972.c')
-rw-r--r-- | drivers/regulator/lp3972.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/lp3972.c b/drivers/regulator/lp3972.c index 7bd6f05edd8d..1b918fb72134 100644 --- a/drivers/regulator/lp3972.c +++ b/drivers/regulator/lp3972.c @@ -537,7 +537,7 @@ static int lp3972_i2c_probe(struct i2c_client *i2c) } static const struct i2c_device_id lp3972_i2c_id[] = { - { "lp3972", 0 }, + { "lp3972" }, { } }; MODULE_DEVICE_TABLE(i2c, lp3972_i2c_id); |