Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Andy Shevchenko and committed by
Hans Verkuil
3f82a462 37308961

+2 -2
+2 -2
drivers/media/rc/ir-spi.c
··· 159 159 160 160 static const struct of_device_id ir_spi_of_match[] = { 161 161 { .compatible = "ir-spi-led" }, 162 - {}, 162 + {} 163 163 }; 164 164 MODULE_DEVICE_TABLE(of, ir_spi_of_match); 165 165 166 166 static const struct spi_device_id ir_spi_ids[] = { 167 167 { "ir-spi-led" }, 168 - {}, 168 + {} 169 169 }; 170 170 MODULE_DEVICE_TABLE(spi, ir_spi_ids); 171 171