mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
iio: adc: ti-ads1119: 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@baylibre.com> Reviewed-by: João Paulo Gonçalves <jpaulo.silvagoncalves@gmail.com> Link: https://patch.msgid.link/20240920153430.503212-11-u.kleine-koenig@baylibre.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
f0da5b8764
commit
ee3bf0c148
|
|
@ -804,7 +804,7 @@ static const struct of_device_id __maybe_unused ads1119_of_match[] = {
|
|||
MODULE_DEVICE_TABLE(of, ads1119_of_match);
|
||||
|
||||
static const struct i2c_device_id ads1119_id[] = {
|
||||
{ "ads1119", 0 },
|
||||
{ "ads1119" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ads1119_id);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user