Hi Dmitry,
diff --git a/drivers/thermal/qcom/qcom-spmi-adc-tm5.c
b/drivers/thermal/qcom/qcom-spmi-adc-tm5.c
new file mode 100644
index 000000000000..22d5414a3c5e
--- /dev/null
+++ b/drivers/thermal/qcom/qcom-spmi-adc-tm5.c
@@ -0,0 +1,621 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2020 Linaro Limited
+ */
+
+#include <linux/iio/consumer.h>
+#include <linux/interrupt.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/of_device.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+#include <linux/thermal.h>
+
+#include "../../iio/adc/qcom-vadc-common.h"
+
When I was testing the patches on SC7180, I found that I had to add this
line for fixing a compilation error for the FIELD_PREP macro:
#include <linux/bitfield.h>
Can you please check and confirm if its needed for compilation here?
Thanks,
Jishnu