summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Gomez2019-04-22 21:09:50 +0200
committerGreg Kroah-Hartman2019-06-15 11:54:02 +0200
commit12c57327a12890e5120fdf2c94f16d7896d63528 (patch)
treea322fa9adfc9d318a5e545d592887ab60cf76410
parentdrivers: thermal: tsens: Don't print error message on -EPROBE_DEFER (diff)
downloadkernel-qcow2-linux-12c57327a12890e5120fdf2c94f16d7896d63528.tar.gz
kernel-qcow2-linux-12c57327a12890e5120fdf2c94f16d7896d63528.tar.xz
kernel-qcow2-linux-12c57327a12890e5120fdf2c94f16d7896d63528.zip
mfd: tps65912-spi: Add missing of table registration
[ Upstream commit 9e364e87ad7f2c636276c773d718cda29d62b741 ] MODULE_DEVICE_TABLE(of, <of_match_table> should be called to complete DT OF mathing mechanism and register it. Before this patch: modinfo drivers/mfd/tps65912-spi.ko | grep alias alias: spi:tps65912 After this patch: modinfo drivers/mfd/tps65912-spi.ko | grep alias alias: of:N*T*Cti,tps65912C* alias: of:N*T*Cti,tps65912 alias: spi:tps65912 Reported-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Daniel Gomez <dagmcr@gmail.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/mfd/tps65912-spi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/tps65912-spi.c b/drivers/mfd/tps65912-spi.c
index 3bd75061f777..f78be039e463 100644
--- a/drivers/mfd/tps65912-spi.c
+++ b/drivers/mfd/tps65912-spi.c
@@ -27,6 +27,7 @@ static const struct of_device_id tps65912_spi_of_match_table[] = {
{ .compatible = "ti,tps65912", },
{ /* sentinel */ }
};
+MODULE_DEVICE_TABLE(of, tps65912_spi_of_match_table);
static int tps65912_spi_probe(struct spi_device *spi)
{