[PATCH 01/14] iio: temperature: iqs620at-temp: separate IIO header from others
From: Joshua Crofts
Date: Sat Aug 22 2026 - 04:04:23 EST
Separate the <linux/iio/iio.h> header from the other generic
<linux/*> headers to comply with the IIO style.
No functional change.
Signed-off-by: Joshua Crofts <joshua.crofts1@xxxxxxxxx>
---
drivers/iio/temperature/iqs620at-temp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/iio/temperature/iqs620at-temp.c b/drivers/iio/temperature/iqs620at-temp.c
index e2f878d57af7..24b4d50740f3 100644
--- a/drivers/iio/temperature/iqs620at-temp.c
+++ b/drivers/iio/temperature/iqs620at-temp.c
@@ -6,13 +6,14 @@
*/
#include <linux/device.h>
-#include <linux/iio/iio.h>
#include <linux/kernel.h>
#include <linux/mfd/iqs62x.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
+#include <linux/iio/iio.h>
+
#define IQS620_TEMP_UI_OUT 0x1A
#define IQS620_TEMP_SCALE 1000
--
2.55.0