diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-07-29 16:35:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-29 08:56:26 -0700 |
commit | 41bd9cee8a68b61743e096ac92a82de1c88f96be (patch) | |
tree | ecdd8d8a7330b3eb9ca457e4358ac979f68b40fc /drivers/nfc | |
parent | da05208a0cb62d539470dd7f951f06cf0092e322 (diff) | |
download | linux-41bd9cee8a68b61743e096ac92a82de1c88f96be.tar.gz linux-41bd9cee8a68b61743e096ac92a82de1c88f96be.tar.bz2 linux-41bd9cee8a68b61743e096ac92a82de1c88f96be.zip |
NFC: nxp-nci: Drop comma in terminator lines
There is no need to have a comma after terminator entry
in the arrays of IDs.
This may prevent the misguided addition behind the terminator
without compiler notice.
Drop the comma in terminator lines for good.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc')
-rw-r--r-- | drivers/nfc/nxp-nci/i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/nfc/nxp-nci/i2c.c b/drivers/nfc/nxp-nci/i2c.c index f2c8a560e265..59b0a02a813d 100644 --- a/drivers/nfc/nxp-nci/i2c.c +++ b/drivers/nfc/nxp-nci/i2c.c @@ -325,7 +325,7 @@ MODULE_DEVICE_TABLE(i2c, nxp_nci_i2c_id_table); static const struct of_device_id of_nxp_nci_i2c_match[] = { { .compatible = "nxp,nxp-nci-i2c", }, - {}, + {} }; MODULE_DEVICE_TABLE(of, of_nxp_nci_i2c_match); @@ -333,7 +333,7 @@ MODULE_DEVICE_TABLE(of, of_nxp_nci_i2c_match); static const struct acpi_device_id acpi_id[] = { { "NXP1001" }, { "NXP7471" }, - { }, + { } }; MODULE_DEVICE_TABLE(acpi, acpi_id); #endif |