diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-03-05 18:48:29 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2024-03-25 10:13:44 +0100 |
commit | 3f82a4624ab4abe2aae836af0cf248b398c42df0 (patch) | |
tree | fa732c1a7eede7857c805f9b9e5667ed5361fb30 /drivers/media/rc | |
parent | media: ir-spi: Utilise temporary variable for struct device (diff) | |
download | linux-3f82a4624ab4abe2aae836af0cf248b398c42df0.tar.xz linux-3f82a4624ab4abe2aae836af0cf248b398c42df0.zip |
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>
Diffstat (limited to 'drivers/media/rc')
-rw-r--r-- | drivers/media/rc/ir-spi.c | 4 |
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); |