thermal: Remove core header inclusion from drivers
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 6 Feb 2023 15:34:29 +0000 (16:34 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 15 Feb 2023 16:29:48 +0000 (17:29 +0100)
As the name states "thermal_core.h" is the header file for the core
components of the thermal framework.

Too many drivers are including it. Hopefully the recent cleanups
helped to self encapsulate the code a bit more and prevented the
drivers to need this header.

Remove this inclusion in every place where it is possible.

Some other drivers did a confusion with the core header and the one
exported in linux/thermal.h. They include the former instead of the
latter. The changes also fix this.

The tegra/soctherm driver still remains as it uses an internal
function which need to be replaced.

The Intel HFI driver uses the netlink internal framework core and
should be changed to prevent to deal with the internals.

No functional changes intended.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com> # armada_thermal.c
Reviewed-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com> # uniphier_thermal.c
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> # rcar_gen3_thermal.c
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> # amlogic_thermal.c
Acked-by: Florian Fainelli <f.fainelli@gmail.com> # bcm2835_thermal.c
Acked-by: Thierry Reding <treding@nvidia.com> # tegra30-tsensor.c
Link: https://lore.kernel.org/r/20230206153432.1017282-1-daniel.lezcano@linaro.org
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
14 files changed:
drivers/thermal/amlogic_thermal.c
drivers/thermal/armada_thermal.c
drivers/thermal/broadcom/bcm2835_thermal.c
drivers/thermal/hisi_thermal.c
drivers/thermal/imx8mm_thermal.c
drivers/thermal/imx_sc_thermal.c
drivers/thermal/intel/intel_hfi.c
drivers/thermal/qcom/qcom-spmi-temp-alarm.c
drivers/thermal/qoriq_thermal.c
drivers/thermal/rcar_gen3_thermal.c
drivers/thermal/samsung/exynos_tmu.c
drivers/thermal/st/stm_thermal.c
drivers/thermal/tegra/tegra30-tsensor.c
drivers/thermal/uniphier_thermal.c

index d30cb791e63c86a32c12318c28dbf7e86397bd56..9235fda4ec1eba632d545b59c25f9de9dbd4de8a 100644 (file)
@@ -28,7 +28,6 @@
 #include <linux/regmap.h>
 #include <linux/thermal.h>
 
-#include "thermal_core.h"
 #include "thermal_hwmon.h"
 
 #define TSENSOR_CFG_REG1                       0x4
index 99e86484a55ce49aebdfb712ad2598c0e2b98ac5..2efc222a379bb22e6f9c2c2383f77bbd5f6f1809 100644 (file)
@@ -19,8 +19,6 @@
 #include <linux/regmap.h>
 #include <linux/interrupt.h>
 
-#include "thermal_core.h"
-
 /* Thermal Manager Control and Status Register */
 #define PMU_TDC0_SW_RST_MASK           (0x1 << 1)
 #define PMU_TM_DISABLE_OFFS            0
index 3d0710c6e004254a25c09d2e5ac56235244d2caf..23918bb76ae649e8e223c74ad7cb9b82594c1b46 100644 (file)
@@ -18,7 +18,6 @@
 #include <linux/platform_device.h>
 #include <linux/thermal.h>
 
-#include "../thermal_core.h"
 #include "../thermal_hwmon.h"
 
 #define BCM2835_TS_TSENSCTL                    0x00
index be036565600578609a4c08cbc6b9919dfa170cd7..32a7c3cf073df22f09293d0960eadf74ed8319fd 100644 (file)
@@ -16,8 +16,7 @@
 #include <linux/platform_device.h>
 #include <linux/io.h>
 #include <linux/of_device.h>
-
-#include "thermal_core.h"
+#include <linux/thermal.h>
 
 #define HI6220_TEMP0_LAG                       (0x0)
 #define HI6220_TEMP0_TH                                (0x4)
index d247b48696cb63dc53373ddc27c397b67777d8ff..72b5d6f319c1d0d9c603312c85bfea587145641f 100644 (file)
@@ -17,7 +17,6 @@
 #include <linux/slab.h>
 #include <linux/thermal.h>
 
-#include "thermal_core.h"
 #include "thermal_hwmon.h"
 
 #define TER                    0x0     /* TMU enable */
index 378f574607f7776032db71297550ab7111187b02..f32e59e7462316de443531bb76c6167687a2cfc1 100644 (file)
@@ -13,7 +13,6 @@
 #include <linux/slab.h>
 #include <linux/thermal.h>
 
-#include "thermal_core.h"
 #include "thermal_hwmon.h"
 
 #define IMX_SC_MISC_FUNC_GET_TEMP      13
index 6e604bda2b93976690df5d8a536fb6658bd31ead..c69db6c90869c8c30b778534aaa26fffbf54c664 100644 (file)
 
 #include <asm/msr.h>
 
-#include "../thermal_core.h"
 #include "intel_hfi.h"
 #include "thermal_interrupt.h"
 
+#include "../thermal_netlink.h"
+
 /* Hardware Feedback Interface MSR configuration bits */
 #define HW_FEEDBACK_PTR_VALID_BIT              BIT(0)
 #define HW_FEEDBACK_CONFIG_HFI_ENABLE_BIT      BIT(0)
index e2429676d0d26ae5e3371b45551fd20c2ff09663..101c75d0e13f3c6605dde08919f9ef7781909463 100644 (file)
@@ -15,7 +15,6 @@
 #include <linux/regmap.h>
 #include <linux/thermal.h>
 
-#include "../thermal_core.h"
 #include "../thermal_hwmon.h"
 
 #define QPNP_TM_REG_DIG_MAJOR          0x01
index d111e218f362ebbfd85a6d191ea15f82a891643e..431c29c0898a7be0f27bce265dad3a58b2d529ba 100644 (file)
@@ -13,7 +13,6 @@
 #include <linux/thermal.h>
 #include <linux/units.h>
 
-#include "thermal_core.h"
 #include "thermal_hwmon.h"
 
 #define SITES_MAX              16
index 8f0f73ea626c90219979d46fe1a034066ae54825..d6b5b59c5c534623e7e64dda97905e40795a1c4d 100644 (file)
@@ -17,7 +17,6 @@
 #include <linux/sys_soc.h>
 #include <linux/thermal.h>
 
-#include "thermal_core.h"
 #include "thermal_hwmon.h"
 
 /* Register offsets */
index 37465af59262bdaeef1382b8a5e79d08efd37a3d..527d1eb0663a10beeef6ab24c28512d3470fd96f 100644 (file)
 #include <linux/of_irq.h>
 #include <linux/platform_device.h>
 #include <linux/regulator/consumer.h>
+#include <linux/thermal.h>
 
 #include <dt-bindings/thermal/thermal_exynos.h>
 
-#include "../thermal_core.h"
-
 /* Exynos generic registers */
 #define EXYNOS_TMU_REG_TRIMINFO                0x0
 #define EXYNOS_TMU_REG_CONTROL         0x20
index e7834ccc7976bd33b36834063b0e8a796d87fa08..735401958f01147fda2f2fd4c57aaa5df7e4e573 100644 (file)
@@ -19,7 +19,6 @@
 #include <linux/platform_device.h>
 #include <linux/thermal.h>
 
-#include "../thermal_core.h"
 #include "../thermal_hwmon.h"
 
 /* DTS register offsets */
index 0ffe37ce7df7f5e4f62891497f09649da84dcccb..b3218b71b6d976968be6bb023897fecac906d953 100644 (file)
@@ -28,7 +28,6 @@
 
 #include <soc/tegra/fuse.h>
 
-#include "../thermal_core.h"
 #include "../thermal_hwmon.h"
 
 #define TSENSOR_SENSOR0_CONFIG0                                0x0
index f8ab2ca761845505997959518c55fbc84afad20f..47801841b3f5d702cd424c1df962a59faea2df57 100644 (file)
@@ -17,8 +17,6 @@
 #include <linux/regmap.h>
 #include <linux/thermal.h>
 
-#include "thermal_core.h"
-
 /*
  * block registers
  * addresses are the offset from .block_base