From: Geert Uytterhoeven Date: Thu, 3 Mar 2022 12:43:57 +0000 (+0100) Subject: media: rcar-csi2: Drop comma after SoC match table sentinel X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9ef9abf4ff57aaedd661622f7d008dd71ece1ffb;p=linux.git media: rcar-csi2: Drop comma after SoC match table sentinel It does not make sense to have a comma after a sentinel, as any new elements must be added before the sentinel. Signed-off-by: Geert Uytterhoeven Reviewed-by: Niklas Söderlund Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c index 2fe179e389d29..fea8f00a91526 100644 --- a/drivers/media/platform/rcar-vin/rcar-csi2.c +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c @@ -1489,7 +1489,7 @@ static const struct soc_device_attribute r8a7795[] = { .soc_id = "r8a7795", .revision = "ES2.*", .data = &rcar_csi2_info_r8a7795es2, }, - { /* sentinel */ }, + { /* sentinel */ } }; static int rcsi2_probe(struct platform_device *pdev)