From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Graf Date: Mon, 1 Feb 2016 23:46:45 +0100 Subject: [U-Boot] [PATCH 02/14] include/efi_api.h: Add more detailed API definitions In-Reply-To: References: <1452834380-164453-1-git-send-email-agraf@suse.de> <1452834380-164453-3-git-send-email-agraf@suse.de> Message-ID: <56AFE055.4090002@suse.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 01/31/2016 04:17 PM, Simon Glass wrote: > On 14 January 2016 at 22:06, Alexander Graf wrote: >> The EFI API header is great, but missing a good chunk of function prototype, >> GUID defines and enum declarations. >> >> This patch extends it to cover more of the EFI API. It's still not 100% >> complete, but sufficient enough for our EFI payload interface. >> >> Signed-off-by: Alexander Graf >> --- >> include/efi_api.h | 197 ++++++++++++++++++++++++++++++++++++++++++++---------- >> 1 file changed, 160 insertions(+), 37 deletions(-) > Reviewed-by: Simon Glass > > But does the notify_function parameter need EFIAPI also? Yes, probably. The reason nobody realized it is that there's nobody calling it today :). Only 32bit arm and ia64 grub2 make use of it. Linux doesn't use the callback at all. But I'll change it. Alex