Re: [PATCH] Add efi_early_call() macro

2014-03-26 Thread Roy Franz
On Wed, Mar 26, 2014 at 1:59 AM, Matt Fleming wrote: > On Tue, 25 Mar, at 03:40:30PM, Roy Franz wrote: >> Add the efi_early_call() macro to invoke functions in the efi_early >> structure. Using a macro for these invocations allows the arm32/arm64 >> architectures to define the macro differently so

Re: [PATCH] Add efi_early_call() macro

2014-03-26 Thread Matt Fleming
On Tue, 25 Mar, at 03:40:30PM, Roy Franz wrote: > Add the efi_early_call() macro to invoke functions in the efi_early > structure. Using a macro for these invocations allows the arm32/arm64 > architectures to define the macro differently so that they can directly > invoke the boot services function

[PATCH] Add efi_early_call() macro

2014-03-25 Thread Roy Franz
Add the efi_early_call() macro to invoke functions in the efi_early structure. Using a macro for these invocations allows the arm32/arm64 architectures to define the macro differently so that they can directly invoke the boot services functions that are exposed in the efi_early structure on x86. Pr