mirror of
https://github.com/rhboot/gnu-efi
synced 2026-08-26 00:26:04 -04:00
riscv64: missing EFI_FUNCTION
Add missing definition. It is needed for 'make apps'. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
2a7829c50b
commit
b5f98d40fe
1 changed files with 2 additions and 0 deletions
|
|
@ -29,3 +29,5 @@ typedef uint16_t WCHAR;
|
|||
#define EFI_SIGNATURE_16(A,B) ((A) | (B<<8))
|
||||
#define EFI_SIGNATURE_32(A,B,C,D) (EFI_SIGNATURE_16(A,B) | (EFI_SIGNATURE_16(C,D) << 16))
|
||||
#define EFI_SIGNATURE_64(A,B,C,D,E,F,G,H) (EFI_SIGNATURE_32(A,B,C,D) | ((UINT64)(EFI_SIGNATURE_32(E,F,G,H)) << 32))
|
||||
|
||||
#define EFI_FUNCTION
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue