diff options
| author | Joshua Crofts <joshua.crofts1@gmail.com> | 2026-08-31 23:13:35 +0200 |
|---|---|---|
| committer | Jonathan Cameron <jonathan.cameron@oss.qualcomm.com> | 2026-09-05 01:09:45 +0100 |
| commit | 052ee3d6102a175dceed281100591215efd2cb1c (patch) | |
| tree | 8c83b2e1df2a33e11a8cea6fda4fc8a24f7d0200 | |
| parent | 08beaefd551ee51b18b18cb7670f93482427cd62 (diff) | |
| download | linux-next-052ee3d6102a175dceed281100591215efd2cb1c.tar.gz linux-next-052ee3d6102a175dceed281100591215efd2cb1c.zip | |
iio: temperature: mlx90635: make headers conform to IWYU
Remove the catch-all kernel.h header and add the missing headers to
enforce IWYU.
Additionally, sort the headers alphabetically.
Signed-off-by: Joshua Crofts <joshua.crofts1@gmail.com>
Signed-off-by: Jonathan Cameron <jonathan.cameron@oss.qualcomm.com>
| -rw-r--r-- | drivers/iio/temperature/mlx90635.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/iio/temperature/mlx90635.c b/drivers/iio/temperature/mlx90635.c index 0f31879a4f64..48c760c980f3 100644 --- a/drivers/iio/temperature/mlx90635.c +++ b/drivers/iio/temperature/mlx90635.c @@ -6,21 +6,24 @@ * * Driver for the Melexis MLX90635 I2C 16-bit IR thermopile sensor */ + +#include <linux/array_size.h> #include <linux/bitfield.h> +#include <linux/bits.h> #include <linux/delay.h> +#include <linux/dev_printk.h> #include <linux/device.h> #include <linux/err.h> -#include <linux/gpio/consumer.h> #include <linux/i2c.h> #include <linux/iopoll.h> #include <linux/jiffies.h> -#include <linux/kernel.h> -#include <linux/limits.h> -#include <linux/module.h> #include <linux/math64.h> +#include <linux/module.h> +#include <linux/mutex.h> #include <linux/pm_runtime.h> #include <linux/regmap.h> #include <linux/regulator/consumer.h> +#include <linux/types.h> #include <linux/iio/iio.h> |
