From e7dcf5645f09504573f534b0fc9abbbc6ff8a5ad Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 1 Aug 2019 09:47:12 -0600 Subject: env: Drop environment.h header file where not needed This header file is now only used by files that access internal environment features. Drop it from various places where it is not needed. Acked-by: Joe Hershberger Signed-off-by: Simon Glass --- cmd/aes.c | 1 - cmd/blob.c | 1 - cmd/bootm.c | 1 - cmd/efidebug.c | 1 - cmd/elf.c | 1 - cmd/ethsw.c | 2 +- cmd/i2c.c | 1 - cmd/ini.c | 1 - cmd/tpm_test.c | 1 - 9 files changed, 1 insertion(+), 9 deletions(-) (limited to 'cmd') diff --git a/cmd/aes.c b/cmd/aes.c index 25efb9642a..7ff4a71709 100644 --- a/cmd/aes.c +++ b/cmd/aes.c @@ -7,7 +7,6 @@ #include #include -#include #include #include #include diff --git a/cmd/blob.c b/cmd/blob.c index d3b6e454bf..80478b8802 100644 --- a/cmd/blob.c +++ b/cmd/blob.c @@ -6,7 +6,6 @@ #include #include -#include #include #include #include diff --git a/cmd/bootm.c b/cmd/bootm.c index b326ac9b43..8279f2b7cc 100644 --- a/cmd/bootm.c +++ b/cmd/bootm.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 961e8fad22..ef97e19d07 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include diff --git a/cmd/elf.c b/cmd/elf.c index 5e5cf47cf8..538562fda5 100644 --- a/cmd/elf.c +++ b/cmd/elf.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #ifdef CONFIG_X86 diff --git a/cmd/ethsw.c b/cmd/ethsw.c index 473324f878..8846805799 100644 --- a/cmd/ethsw.c +++ b/cmd/ethsw.c @@ -7,7 +7,7 @@ #include #include -#include +#include #include #include #include diff --git a/cmd/i2c.c b/cmd/i2c.c index 09c4ba9a1c..e0f8ece597 100644 --- a/cmd/i2c.c +++ b/cmd/i2c.c @@ -71,7 +71,6 @@ #include #include #include -#include #include #include #include diff --git a/cmd/ini.c b/cmd/ini.c index f4faa7cae1..0c425262d0 100644 --- a/cmd/ini.c +++ b/cmd/ini.c @@ -14,7 +14,6 @@ #include #include #include -#include #include #include diff --git a/cmd/tpm_test.c b/cmd/tpm_test.c index 56a5aa4aa5..c14dd75a26 100644 --- a/cmd/tpm_test.c +++ b/cmd/tpm_test.c @@ -5,7 +5,6 @@ #include #include -#include #include #include "tpm-user-utils.h" -- cgit