mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
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>
This commit is contained in:
parent
37308961cf
commit
3f82a4624a
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue