diff options
| author | Geert Uytterhoeven <[email protected]> | 2022-03-03 13:43:57 +0100 |
|---|---|---|
| committer | Hans Verkuil <[email protected]> | 2022-03-07 17:21:53 +0100 |
| commit | 9ef9abf4ff57aaedd661622f7d008dd71ece1ffb (patch) | |
| tree | 6462ad99094f219c8ef7981307bdcd61cfa8eb77 | |
| parent | a312f8982632fb1a882a8dc3c9fd127d082c1c02 (diff) | |
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 <[email protected]>
Reviewed-by: Niklas Söderlund <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
| -rw-r--r-- | drivers/media/platform/rcar-vin/rcar-csi2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c index 2fe179e389d2..fea8f00a9152 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) |