diff mbox

[1/8] efi: make install_configuration_table() boot service usable

Message ID 1457588408-19309-2-git-send-email-ard.biesheuvel@linaro.org
State New
Headers show

Commit Message

Ard Biesheuvel March 10, 2016, 5:40 a.m. UTC
This patch redeclares efi_boot_services_t::install_configuration_table
as a function pointer so that the boot service is callable as a function.

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

---
 include/linux/efi.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.9.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

Comments

Ard Biesheuvel March 18, 2016, 11:02 a.m. UTC | #1
On 18 March 2016 at 11:59, Matt Fleming <matt@codeblueprint.co.uk> wrote:
> On Thu, 10 Mar, at 12:40:01PM, Ard Biesheuvel wrote:

>> This patch redeclares efi_boot_services_t::install_configuration_table

>> as a function pointer so that the boot service is callable as a function.

>>

>> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

>> ---

>>  include/linux/efi.h | 2 +-

>>  1 file changed, 1 insertion(+), 1 deletion(-)

>

> Any chance you could fold this patch into the one that actually uses

> install_configuration_table() on ARM? That way it's clear to see where

> the users are.

>


Sure. Patch #2 actually does the same for locate_handle()


>> diff --git a/include/linux/efi.h b/include/linux/efi.h

>> index e747eb08b2be..8ba6eb7863aa 100644

>> --- a/include/linux/efi.h

>> +++ b/include/linux/efi.h

>> @@ -283,7 +283,7 @@ typedef struct {

>>       void *register_protocol_notify;

>>       void *locate_handle;

>>       void *locate_device_path;

>> -     void *install_configuration_table;

>> +     efi_status_t (*install_configuration_table)(efi_guid_t *, void *);

>>       void *load_image;

>>       void *start_image;

>>       void *exit;

>> --

>> 1.9.1

>>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
diff mbox

Patch

diff --git a/include/linux/efi.h b/include/linux/efi.h
index e747eb08b2be..8ba6eb7863aa 100644
--- a/include/linux/efi.h
+++ b/include/linux/efi.h
@@ -283,7 +283,7 @@  typedef struct {
 	void *register_protocol_notify;
 	void *locate_handle;
 	void *locate_device_path;
-	void *install_configuration_table;
+	efi_status_t (*install_configuration_table)(efi_guid_t *, void *);
 	void *load_image;
 	void *start_image;
 	void *exit;