diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:31:26 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:56 -0600 |
commit | 66fa3531656065d512c179cfa97b8dcf180be0c1 (patch) | |
tree | 06259aa5bb3365babc074d8e6ff9a7412dab90e9 | |
parent | 33a67c5eee43f0bee3f5a87b7d107a0555f8d7b0 (diff) | |
download | u-boot-66fa3531656065d512c179cfa97b8dcf180be0c1.zip u-boot-66fa3531656065d512c179cfa97b8dcf180be0c1.tar.gz u-boot-66fa3531656065d512c179cfa97b8dcf180be0c1.tar.bz2 |
thermal: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/thermal/imx_scu_thermal.c | 1 | ||||
-rw-r--r-- | drivers/thermal/imx_thermal.c | 1 | ||||
-rw-r--r-- | drivers/thermal/imx_tmu.c | 1 | ||||
-rw-r--r-- | drivers/thermal/thermal-uclass.c | 1 | ||||
-rw-r--r-- | drivers/thermal/thermal_sandbox.c | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/drivers/thermal/imx_scu_thermal.c b/drivers/thermal/imx_scu_thermal.c index 3ec131c..fc2b0e2 100644 --- a/drivers/thermal/imx_scu_thermal.c +++ b/drivers/thermal/imx_scu_thermal.c @@ -4,7 +4,6 @@ */ #include <config.h> -#include <common.h> #include <dm.h> #include <errno.h> #include <log.h> diff --git a/drivers/thermal/imx_thermal.c b/drivers/thermal/imx_thermal.c index 2f6343e..ea1fcc3 100644 --- a/drivers/thermal/imx_thermal.c +++ b/drivers/thermal/imx_thermal.c @@ -6,7 +6,6 @@ */ #include <config.h> -#include <common.h> #include <div64.h> #include <fuse.h> #include <log.h> diff --git a/drivers/thermal/imx_tmu.c b/drivers/thermal/imx_tmu.c index ea6c832..70d002a 100644 --- a/drivers/thermal/imx_tmu.c +++ b/drivers/thermal/imx_tmu.c @@ -5,7 +5,6 @@ */ #include <config.h> -#include <common.h> #include <asm/global_data.h> #include <asm/io.h> #include <asm/arch/clock.h> diff --git a/drivers/thermal/thermal-uclass.c b/drivers/thermal/thermal-uclass.c index 700df8a..f0fe912 100644 --- a/drivers/thermal/thermal-uclass.c +++ b/drivers/thermal/thermal-uclass.c @@ -5,7 +5,6 @@ #define LOG_CATEGORY UCLASS_THERMAL -#include <common.h> #include <dm.h> #include <thermal.h> #include <errno.h> diff --git a/drivers/thermal/thermal_sandbox.c b/drivers/thermal/thermal_sandbox.c index 7dc0d10..9af0d02 100644 --- a/drivers/thermal/thermal_sandbox.c +++ b/drivers/thermal/thermal_sandbox.c @@ -6,7 +6,6 @@ * Sandbox driver for the thermal uclass. */ -#include <common.h> #include <dm.h> #include <thermal.h> |