* Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx> wrote: > diff --git a/drivers/firmware/efi/libstub/arm32-stub.c b/drivers/firmware/efi/libstub/arm32-stub.c > index 495ebd657e38..0fbe00f13186 100644 > --- a/drivers/firmware/efi/libstub/arm32-stub.c > +++ b/drivers/firmware/efi/libstub/arm32-stub.c > @@ -9,6 +9,44 @@ > #include <linux/efi.h> > #include <asm/efi.h> > > +static const efi_guid_t screen_info_guid = LINUX_ARM32_SCREEN_INFO_TABLE_GUID; > + > +struct screen_info *alloc_screen_info(efi_system_table_t *sys_table_arg) > +{ > + struct screen_info *si; > + efi_status_t status; > + > + /* > + * Unlike on arm64, where we can directly fill out the screen_info > + * structure from the stub, we need to allocate a buffer to hold > + * its contents while we hand over to the kernel proper from the > + * decompressor. > + */ > + status = efi_call_early(allocate_pool, EFI_RUNTIME_SERVICES_DATA, > + sizeof(*si), (void **)&si); > + > + if (status != EFI_SUCCESS) > + return NULL; > + > + status = efi_call_early(install_configuration_table, > + (efi_guid_t *)&screen_info_guid, si); > + if (status == EFI_SUCCESS) > + return si; > + > + efi_call_early(free_pool, si); > + return NULL; > +} > + > +void free_screen_info(efi_system_table_t *sys_table_arg, struct screen_info *si) > +{ > + if (!si) > + return; > + > + efi_call_early(install_configuration_table, > + (efi_guid_t *)&screen_info_guid, NULL); > + efi_call_early(free_pool, si); > +} > + > efi_status_t handle_kernel_image(efi_system_table_t *sys_table, > unsigned long *image_addr, > unsigned long *image_size, So screen_info_guid should probably not be a 'const': you have to cast it away anyway, adding artificial linebreaks and uglifying the code. It's also a bad practice to cast away const-ness, it hinders move-consts-to-readonly-sections efforts. Otherwise the series looks mostly good to me. Time for new v4.6 merges is short, but if Matt acks it I can still take it into tip:efi/core. Thanks, Ingo -- 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