On Thu, 01 Oct, at 07:04:16PM, Ard Biesheuvel wrote: > This refactors the EFI init and runtime code that will be shared > between arm64 and ARM so that it can be built for both archs. > > Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx> > --- > arch/arm64/include/asm/efi.h | 16 ++++ > arch/arm64/kernel/efi.c | 51 ++++++++++ > drivers/firmware/efi/arm-init.c | 11 ++- > drivers/firmware/efi/arm-runtime.c | 101 ++++++-------------- > drivers/firmware/efi/efi.c | 4 +- > 5 files changed, 105 insertions(+), 78 deletions(-) [...] > diff --git a/drivers/firmware/efi/arm-init.c b/drivers/firmware/efi/arm-init.c > index 56987a5b9033..235677b86e4e 100644 > --- a/drivers/firmware/efi/arm-init.c > +++ b/drivers/firmware/efi/arm-init.c > @@ -66,7 +66,7 @@ static int __init uefi_init(void) > { > efi_char16_t *c16; > void *config_tables; > - u64 table_size; > + int table_size; > char vendor[100] = "unknown"; > int i, retval; Perhaps 'table_size' should be unsigned long? At the very least it should be size_t, not int. > diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c > index f5e586bd3b24..2eb31e28a35c 100644 > --- a/drivers/firmware/efi/efi.c > +++ b/drivers/firmware/efi/efi.c > @@ -23,6 +23,8 @@ > #include <linux/io.h> > #include <linux/platform_device.h> > > +#include <asm/efi.h> > + > struct efi __read_mostly efi = { > .mps = EFI_INVALID_TABLE_ADDR, > .acpi = EFI_INVALID_TABLE_ADDR, Hmm... not quite sure why this new include is required? -- Matt Fleming, Intel Open Source Technology Center -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html