diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:30:35 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:41 -0600 |
commit | 9f97807afa5dcfd6520aca2ee16270e3c3f21429 (patch) | |
tree | b042a13a9aaf0b45bc4ca58ee5f86724fb840fa2 | |
parent | 72d31d97670e79e713609f04f30abe7ddd05a329 (diff) | |
download | u-boot-9f97807afa5dcfd6520aca2ee16270e3c3f21429.zip u-boot-9f97807afa5dcfd6520aca2ee16270e3c3f21429.tar.gz u-boot-9f97807afa5dcfd6520aca2ee16270e3c3f21429.tar.bz2 |
cache: 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/cache/cache-l2x0.c | 1 | ||||
-rw-r--r-- | drivers/cache/cache-sifive-ccache.c | 1 | ||||
-rw-r--r-- | drivers/cache/cache-uclass.c | 1 | ||||
-rw-r--r-- | drivers/cache/cache-v5l2.c | 1 | ||||
-rw-r--r-- | drivers/cache/sandbox_cache.c | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/drivers/cache/cache-l2x0.c b/drivers/cache/cache-l2x0.c index 560f4c9..c7bdd9d 100644 --- a/drivers/cache/cache-l2x0.c +++ b/drivers/cache/cache-l2x0.c @@ -2,7 +2,6 @@ /* * Copyright (C) 2019 Intel Corporation <www.intel.com> */ -#include <common.h> #include <command.h> #include <dm.h> diff --git a/drivers/cache/cache-sifive-ccache.c b/drivers/cache/cache-sifive-ccache.c index 521df40..cc00b80 100644 --- a/drivers/cache/cache-sifive-ccache.c +++ b/drivers/cache/cache-sifive-ccache.c @@ -3,7 +3,6 @@ * Copyright (C) 2021 SiFive */ -#include <common.h> #include <cache.h> #include <dm.h> #include <asm/io.h> diff --git a/drivers/cache/cache-uclass.c b/drivers/cache/cache-uclass.c index 0c13dbd..300e7bc 100644 --- a/drivers/cache/cache-uclass.c +++ b/drivers/cache/cache-uclass.c @@ -5,7 +5,6 @@ #define LOG_CATEGORY UCLASS_CACHE -#include <common.h> #include <cache.h> #include <dm.h> diff --git a/drivers/cache/cache-v5l2.c b/drivers/cache/cache-v5l2.c index fe3f939..f0b8ecc 100644 --- a/drivers/cache/cache-v5l2.c +++ b/drivers/cache/cache-v5l2.c @@ -4,7 +4,6 @@ * Rick Chen, Andes Technology Corporation <rick@andestech.com> */ -#include <common.h> #include <command.h> #include <cache.h> #include <dm.h> diff --git a/drivers/cache/sandbox_cache.c b/drivers/cache/sandbox_cache.c index 955dfc8..2e20b83 100644 --- a/drivers/cache/sandbox_cache.c +++ b/drivers/cache/sandbox_cache.c @@ -3,7 +3,6 @@ * Copyright (C) 2019 Intel Corporation <www.intel.com> */ -#include <common.h> #include <cache.h> #include <dm.h> #include <errno.h> |