From: Liao Chen Date: Thu, 29 Aug 2024 12:52:03 +0000 (+0000) Subject: media: i2c: mt9v111: Drop redundant comma X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b16042064919e81d84d5566fdf82f660f9616e7a;p=linux.git media: i2c: mt9v111: Drop redundant comma Drop the redundant comma from mt9v111_of_match array to make the code clean. Signed-off-by: Liao Chen Reviewed-by: Biju Das Reviewed-by: Laurent Pinchart Signed-off-by: Sakari Ailus Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/i2c/mt9v111.c b/drivers/media/i2c/mt9v111.c index b6a2623798c5..723fe138e7bc 100644 --- a/drivers/media/i2c/mt9v111.c +++ b/drivers/media/i2c/mt9v111.c @@ -1263,7 +1263,7 @@ static void mt9v111_remove(struct i2c_client *client) static const struct of_device_id mt9v111_of_match[] = { { .compatible = "aptina,mt9v111", }, - { /* sentinel */ }, + { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, mt9v111_of_match);