summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2024-03-05 20:48:29 +0300
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2024-03-25 12:13:44 +0300
commit3f82a4624ab4abe2aae836af0cf248b398c42df0 (patch)
treefa732c1a7eede7857c805f9b9e5667ed5361fb30
parent37308961cff12dc17b018833ac429c4db38e8eea (diff)
downloadlinux-3f82a4624ab4abe2aae836af0cf248b398c42df0.tar.xz
media: ir-spi: Remove trailing comma in the terminator entry
Remove trailing comma in the terminator entry in ID table(s). Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Andi Shyti <andi.shyti@kernel.org> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
-rw-r--r--drivers/media/rc/ir-spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/rc/ir-spi.c b/drivers/media/rc/ir-spi.c
index 19102bdcfd6f..801de3d108cc 100644
--- a/drivers/media/rc/ir-spi.c
+++ b/drivers/media/rc/ir-spi.c
@@ -159,13 +159,13 @@ static int ir_spi_probe(struct spi_device *spi)
static const struct of_device_id ir_spi_of_match[] = {
{ .compatible = "ir-spi-led" },
- {},
+ {}
};
MODULE_DEVICE_TABLE(of, ir_spi_of_match);
static const struct spi_device_id ir_spi_ids[] = {
{ "ir-spi-led" },
- {},
+ {}
};
MODULE_DEVICE_TABLE(spi, ir_spi_ids);