From: Philippe Schenker Date: Tue, 7 May 2019 14:36:11 +0000 (+0200) Subject: iio: stmpe-adc: Add compatible name X-Git-Tag: v5.3-rc1~126^2~470^2~10 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2abd293703ebafe8ae64876936ad345c6716cd9a;p=linux-block.git 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 Signed-off-by: Jonathan Cameron --- 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 "); MODULE_DESCRIPTION("STMPEXXX ADC driver"); MODULE_LICENSE("GPL v2");