diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:31:16 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:56 -0600 |
commit | 8625f7bb6ea8d9d3e68d59ab0381ba3ccee6ea1f (patch) | |
tree | 6b624a73bbefa6af730f4001b0dc88459adfd1fd | |
parent | 16a50b666d4aab6f1cb43b8d99a1d259ba04c753 (diff) | |
download | u-boot-8625f7bb6ea8d9d3e68d59ab0381ba3ccee6ea1f.zip u-boot-8625f7bb6ea8d9d3e68d59ab0381ba3ccee6ea1f.tar.gz u-boot-8625f7bb6ea8d9d3e68d59ab0381ba3ccee6ea1f.tar.bz2 |
scsi: 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/scsi/sandbox_scsi.c | 1 | ||||
-rw-r--r-- | drivers/scsi/scsi-uclass.c | 1 | ||||
-rw-r--r-- | drivers/scsi/scsi.c | 1 | ||||
-rw-r--r-- | drivers/scsi/scsi_bootdev.c | 1 | ||||
-rw-r--r-- | drivers/scsi/scsi_emul.c | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/drivers/scsi/sandbox_scsi.c b/drivers/scsi/sandbox_scsi.c index a7ac33c..544a024 100644 --- a/drivers/scsi/sandbox_scsi.c +++ b/drivers/scsi/sandbox_scsi.c @@ -9,7 +9,6 @@ #define LOG_CATEGORY UCLASS_SCSI -#include <common.h> #include <dm.h> #include <os.h> #include <malloc.h> diff --git a/drivers/scsi/scsi-uclass.c b/drivers/scsi/scsi-uclass.c index a7c1eaf..1ee8236 100644 --- a/drivers/scsi/scsi-uclass.c +++ b/drivers/scsi/scsi-uclass.c @@ -10,7 +10,6 @@ #define LOG_CATEGORY UCLASS_SCSI -#include <common.h> #include <dm.h> #include <scsi.h> diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 79ee400..73cb835 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c @@ -6,7 +6,6 @@ #define LOG_CATEGORY UCLASS_SCSI -#include <common.h> #include <blk.h> #include <bootdev.h> #include <bootstage.h> diff --git a/drivers/scsi/scsi_bootdev.c b/drivers/scsi/scsi_bootdev.c index 218221f..28e4612 100644 --- a/drivers/scsi/scsi_bootdev.c +++ b/drivers/scsi/scsi_bootdev.c @@ -6,7 +6,6 @@ * Written by Simon Glass <sjg@chromium.org> */ -#include <common.h> #include <bootdev.h> #include <dm.h> #include <init.h> diff --git a/drivers/scsi/scsi_emul.c b/drivers/scsi/scsi_emul.c index 6b8468f..d1bb926 100644 --- a/drivers/scsi/scsi_emul.c +++ b/drivers/scsi/scsi_emul.c @@ -11,7 +11,6 @@ #define LOG_CATEGORY UCLASS_SCSI -#include <common.h> #include <dm.h> #include <log.h> #include <scsi.h> |