iio:adc:ti-adc084s021: drop of_match_ptr protection
Allows ACPI PRP0001 to be used with this driver. Also adds mod_devicetable.h header as the driver is directly using struct of_device_id which is defined in that file. I'm also trying to clear out of_match_ptr use in IIO to avoid it being cut and paste into new drivers. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Cc: Mårten Lindahl <martenli@axis.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
This commit is contained in:
Родитель
0896ffdd83
Коммит
f14bac473f
|
@ -10,6 +10,7 @@
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include <linux/spi/spi.h>
|
#include <linux/spi/spi.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <linux/mod_devicetable.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/iio/iio.h>
|
#include <linux/iio/iio.h>
|
||||||
#include <linux/iio/buffer.h>
|
#include <linux/iio/buffer.h>
|
||||||
|
@ -254,7 +255,7 @@ MODULE_DEVICE_TABLE(spi, adc084s021_id);
|
||||||
static struct spi_driver adc084s021_driver = {
|
static struct spi_driver adc084s021_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = ADC084S021_DRIVER_NAME,
|
.name = ADC084S021_DRIVER_NAME,
|
||||||
.of_match_table = of_match_ptr(adc084s021_of_match),
|
.of_match_table = adc084s021_of_match,
|
||||||
},
|
},
|
||||||
.probe = adc084s021_probe,
|
.probe = adc084s021_probe,
|
||||||
.id_table = adc084s021_id,
|
.id_table = adc084s021_id,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче