diff options
author | Daniel Lezcano <[email protected]> | 2023-02-06 16:34:29 +0100 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2023-02-15 17:29:48 +0100 |
commit | 9272d2d43b6e532d0c0b6d3a597cf75c9ca1e183 (patch) | |
tree | 86a2b952bb2883efb5fc0e28b11582074fa2fc89 /drivers/thermal/intel/intel_hfi.c | |
parent | ef1ab1657fda1fd38a082b5652a2bbc6d510ffff (diff) |
thermal: Remove core header inclusion from drivers
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 <[email protected]>
Reviewed-by: Miquel Raynal <[email protected]> # armada_thermal.c
Reviewed-by: Kunihiko Hayashi <[email protected]> # uniphier_thermal.c
Reviewed-by: Niklas Söderlund <[email protected]> # rcar_gen3_thermal.c
Reviewed-by: Neil Armstrong <[email protected]> # amlogic_thermal.c
Acked-by: Florian Fainelli <[email protected]> # bcm2835_thermal.c
Acked-by: Thierry Reding <[email protected]> # tegra30-tsensor.c
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Rafael J. Wysocki <[email protected]>
Diffstat (limited to 'drivers/thermal/intel/intel_hfi.c')
-rw-r--r-- | drivers/thermal/intel/intel_hfi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/thermal/intel/intel_hfi.c b/drivers/thermal/intel/intel_hfi.c index 6e604bda2b93..c69db6c90869 100644 --- a/drivers/thermal/intel/intel_hfi.c +++ b/drivers/thermal/intel/intel_hfi.c @@ -40,10 +40,11 @@ #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) |