aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Gomez <dagmcr@gmail.com>2019-04-22 15:08:04 -0400
committerDavid S. Miller <davem@davemloft.net>2019-04-23 13:44:44 -0400
commitd04830531d0c4a99c897a44038e5da3d23331d2f (patch)
treebb0a1ae718b655729f0ad0739088b82c1904c51a
parent2f23a2a768bee7ad2ff1e9527c3f7e279e794a46 (diff)
spi: ST ST95HF NFC: declare missing of table
Add missing <of_device_id> table for SPI driver relying on SPI device match since compatible is in a DT binding or in a DTS. Before this patch: modinfo drivers/nfc/st95hf/st95hf.ko | grep alias alias: spi:st95hf After this patch: modinfo drivers/nfc/st95hf/st95hf.ko | grep alias alias: spi:st95hf alias: of:N*T*Cst,st95hfC* alias: of:N*T*Cst,st95hf Reported-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Daniel Gomez <dagmcr@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/nfc/st95hf/core.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c
index 2b26f762fbc3..01acb6e53365 100644
--- a/drivers/nfc/st95hf/core.c
+++ b/drivers/nfc/st95hf/core.c
@@ -1074,6 +1074,12 @@ static const struct spi_device_id st95hf_id[] = {
1074}; 1074};
1075MODULE_DEVICE_TABLE(spi, st95hf_id); 1075MODULE_DEVICE_TABLE(spi, st95hf_id);
1076 1076
1077static const struct of_device_id st95hf_spi_of_match[] = {
1078 { .compatible = "st,st95hf" },
1079 { },
1080};
1081MODULE_DEVICE_TABLE(of, st95hf_spi_of_match);
1082
1077static int st95hf_probe(struct spi_device *nfc_spi_dev) 1083static int st95hf_probe(struct spi_device *nfc_spi_dev)
1078{ 1084{
1079 int ret; 1085 int ret;
@@ -1260,6 +1266,7 @@ static struct spi_driver st95hf_driver = {
1260 .driver = { 1266 .driver = {
1261 .name = "st95hf", 1267 .name = "st95hf",
1262 .owner = THIS_MODULE, 1268 .owner = THIS_MODULE,
1269 .of_match_table = of_match_ptr(st95hf_spi_of_match),
1263 }, 1270 },
1264 .id_table = st95hf_id, 1271 .id_table = st95hf_id,
1265 .probe = st95hf_probe, 1272 .probe = st95hf_probe,