diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-02-02 22:55:31 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2022-02-06 15:21:52 +0000 |
commit | 2314e7ed67d22af2864fae5586d5e20b793f4909 (patch) | |
tree | cb93916251c13e7201cf58400c0c518200355e42 /drivers/iio/temperature | |
parent | d2fdbccd809605a0813cd119ba20f84536b7c95b (diff) | |
download | lwn-2314e7ed67d22af2864fae5586d5e20b793f4909.tar.gz lwn-2314e7ed67d22af2864fae5586d5e20b793f4909.zip |
iio: temperature: mlx90632: Switch from of headers to mod_devicetable.h
There is nothing directly using of specific interfaces in this driver,
so lets not include the headers.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220202205531.57966-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/temperature')
-rw-r--r-- | drivers/iio/temperature/mlx90632.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/temperature/mlx90632.c b/drivers/iio/temperature/mlx90632.c index 608ccb1d8bc8..7ee7ff8047a4 100644 --- a/drivers/iio/temperature/mlx90632.c +++ b/drivers/iio/temperature/mlx90632.c @@ -13,9 +13,9 @@ #include <linux/iopoll.h> #include <linux/kernel.h> #include <linux/limits.h> +#include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/math64.h> -#include <linux/of.h> #include <linux/pm_runtime.h> #include <linux/regmap.h> |