summaryrefslogtreecommitdiff
path: root/drivers/media/i2c/adv7175.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2024-05-08 15:20:42 +0200
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2024-08-09 07:56:37 +0200
commitcc4cbd4b4f97a968203530ef73598ad2eaf70dee (patch)
tree974f2ffcb1698fe3afe53026e9602e8b9d337eb6 /drivers/media/i2c/adv7175.c
parent343cb1ec7b3dd626e4b93b27d7aff604b06453e9 (diff)
downloadlwn-cc4cbd4b4f97a968203530ef73598ad2eaf70dee.tar.gz
lwn-cc4cbd4b4f97a968203530ef73598ad2eaf70dee.zip
media: 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> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'drivers/media/i2c/adv7175.c')
-rw-r--r--drivers/media/i2c/adv7175.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/i2c/adv7175.c b/drivers/media/i2c/adv7175.c
index e454cba4b026..384da1ec5bf9 100644
--- a/drivers/media/i2c/adv7175.c
+++ b/drivers/media/i2c/adv7175.c
@@ -432,8 +432,8 @@ static void adv7175_remove(struct i2c_client *client)
/* ----------------------------------------------------------------------- */
static const struct i2c_device_id adv7175_id[] = {
- { "adv7175", 0 },
- { "adv7176", 0 },
+ { "adv7175" },
+ { "adv7176" },
{ }
};
MODULE_DEVICE_TABLE(i2c, adv7175_id);