diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2024-05-02 09:47:20 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-03 04:08:06 +0200 |
commit | ba2a2c378ada0cd641a1887151ea8af532617c69 (patch) | |
tree | 8e8a18e4c52942673ba964159dedbb78b6d5bde9 /sound/soc/codecs/wm2000.c | |
parent | ASoC: Use inline function for type safety in snd_soc_substream_to_rtd() (diff) | |
download | linux-ba2a2c378ada0cd641a1887151ea8af532617c69.tar.xz linux-ba2a2c378ada0cd641a1887151ea8af532617c69.zip |
ASoC: codecs: 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>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20240502074722.1103986-2-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm2000.c')
-rw-r--r-- | sound/soc/codecs/wm2000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm2000.c b/sound/soc/codecs/wm2000.c index 9571ea53cb3f..a07a443ba196 100644 --- a/sound/soc/codecs/wm2000.c +++ b/sound/soc/codecs/wm2000.c @@ -929,7 +929,7 @@ out: } static const struct i2c_device_id wm2000_i2c_id[] = { - { "wm2000", 0 }, + { "wm2000" }, { } }; MODULE_DEVICE_TABLE(i2c, wm2000_i2c_id); |