Commit 615b5e19 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Jonathan Cameron

iio: temperature: max31865: Make use of device properties

Convert the module to be property provider agnostic and allow
it to be used on non-OF platforms.

Add mod_devicetable.h include.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220413185335.21743-1-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 06f90dd4
...@@ -12,9 +12,11 @@ ...@@ -12,9 +12,11 @@
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/iio/iio.h> #include <linux/iio/iio.h>
#include <linux/iio/sysfs.h> #include <linux/iio/sysfs.h>
#include <linux/property.h>
#include <linux/spi/spi.h> #include <linux/spi/spi.h>
#include <asm/unaligned.h> #include <asm/unaligned.h>
...@@ -305,7 +307,7 @@ static int max31865_probe(struct spi_device *spi) ...@@ -305,7 +307,7 @@ static int max31865_probe(struct spi_device *spi)
indio_dev->channels = max31865_channels; indio_dev->channels = max31865_channels;
indio_dev->num_channels = ARRAY_SIZE(max31865_channels); indio_dev->num_channels = ARRAY_SIZE(max31865_channels);
if (of_property_read_bool(spi->dev.of_node, "maxim,3-wire")) { if (device_property_read_bool(&spi->dev, "maxim,3-wire")) {
/* select 3 wire */ /* select 3 wire */
data->three_wire = 1; data->three_wire = 1;
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment