summaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorPhilippe Schenker2019-05-07 16:36:11 +0200
committerJonathan Cameron2019-05-11 11:57:59 +0200
commit2abd293703ebafe8ae64876936ad345c6716cd9a (patch)
treef8fe2148b326dd1bb8b1fbaaf2aa620798322922 /drivers/iio
parentiio: stmpe-adc: Remove unnecessary assignment (diff)
downloadkernel-qcow2-linux-2abd293703ebafe8ae64876936ad345c6716cd9a.tar.gz
kernel-qcow2-linux-2abd293703ebafe8ae64876936ad345c6716cd9a.tar.xz
kernel-qcow2-linux-2abd293703ebafe8ae64876936ad345c6716cd9a.zip
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>
Diffstat (limited to 'drivers/iio')
-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 c01806906416..da6cab88af53 100644
--- a/drivers/iio/adc/stmpe-adc.c
+++ b/drivers/iio/adc/stmpe-adc.c
@@ -351,9 +351,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");