From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heinrich Schuchardt Date: Mon, 28 Dec 2020 16:06:25 +0100 Subject: [PATCH 4/6] efi_loader: Remove unused headers from efi_load_initrd.c In-Reply-To: <20201228122440.316403-5-ilias.apalodimas@linaro.org> References: <20201228122440.316403-1-ilias.apalodimas@linaro.org> <20201228122440.316403-5-ilias.apalodimas@linaro.org> Message-ID: <83a9bb58-2950-228c-e28e-b9cba134ecdc@gmx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/28/20 1:24 PM, Ilias Apalodimas wrote: > dm.h and env.h serve no purpose here. Remove them > > Signed-off-by: Ilias Apalodimas > --- > lib/efi_loader/efi_load_initrd.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/lib/efi_loader/efi_load_initrd.c b/lib/efi_loader/efi_load_initrd.c > index 984fea1bd679..e0b4a82ce037 100644 > --- a/lib/efi_loader/efi_load_initrd.c > +++ b/lib/efi_loader/efi_load_initrd.c > @@ -4,10 +4,8 @@ > */ > > #include > -#include > #include > #include > -#include > #include > #include > #include It would be nice to bring the headers into alphabetic order. I suggest to apply this change before any other changes to efi_load_initrd.c Best regards Heinrich >