summaryrefslogtreecommitdiff
path: root/drivers/iio/adc/stmpe-adc.c
diff options
context:
space:
mode:
authorPhilippe Schenker <philippe.schenker@toradex.com>2019-05-07 16:36:11 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2020-04-15 01:24:39 +0200
commitc78ef305cd4acb3418f6251b0381be7c6272a669 (patch)
tree1a85b6c1cddbc31f92200b7dd3c0c26f0383e463 /drivers/iio/adc/stmpe-adc.c
parentaa9047a6cad3f16e5ed3e060392d9863d84d4c4c (diff)
iio: stmpe-adc: Add compatible name
Add the compatible name to the driver so it gets loaded when the proper node in DT is detected. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> (cherry picked from commit 2abd293703ebafe8ae64876936ad345c6716cd9a)
Diffstat (limited to 'drivers/iio/adc/stmpe-adc.c')
-rw-r--r--drivers/iio/adc/stmpe-adc.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/iio/adc/stmpe-adc.c b/drivers/iio/adc/stmpe-adc.c
index 87141177fbda..6366e5bf94d5 100644
--- a/drivers/iio/adc/stmpe-adc.c
+++ b/drivers/iio/adc/stmpe-adc.c
@@ -352,9 +352,14 @@ static struct platform_driver stmpe_adc_driver = {
.pm = &stmpe_adc_pm_ops,
},
};
-
module_platform_driver(stmpe_adc_driver);
+static const struct of_device_id stmpe_adc_ids[] = {
+ { .compatible = "st,stmpe-adc", },
+ { },
+};
+MODULE_DEVICE_TABLE(of, stmpe_adc_ids);
+
MODULE_AUTHOR("Stefan Agner <stefan.agner@toradex.com>");
MODULE_DESCRIPTION("STMPEXXX ADC driver");
MODULE_LICENSE("GPL v2");