mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
efi_loader rename enum efi_mem_type to efi_memory_type
Use the same name as in the UEFI specification to avoid confusion. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
parent
3ced574530
commit
c91737b7f1
3 changed files with 3 additions and 3 deletions
|
@ -91,7 +91,7 @@ struct hob_mem_alloc {
|
|||
* Type EFI_MEMORY_TYPE is defined in AllocatePages() in the UEFI 2.0
|
||||
* specification.
|
||||
*/
|
||||
enum efi_mem_type mem_type;
|
||||
enum efi_memory_type mem_type;
|
||||
/* padding */
|
||||
u8 reserved[4];
|
||||
};
|
||||
|
|
|
@ -154,7 +154,7 @@ enum efi_allocate_type {
|
|||
};
|
||||
|
||||
/* Enumeration of memory types introduced in UEFI */
|
||||
enum efi_mem_type {
|
||||
enum efi_memory_type {
|
||||
EFI_RESERVED_MEMORY_TYPE,
|
||||
/*
|
||||
* The code portions of a loaded application.
|
||||
|
|
|
@ -249,7 +249,7 @@ struct efi_memory_range {
|
|||
struct efi_memory_range_capsule {
|
||||
struct efi_capsule_header *header;
|
||||
/* EFI_MEMORY_TYPE: 0x80000000-0xFFFFFFFF */
|
||||
enum efi_mem_type os_requested_memory_type;
|
||||
enum efi_memory_type os_requested_memory_type;
|
||||
u64 number_of_memory_ranges;
|
||||
struct efi_memory_range memory_ranges[];
|
||||
} __packed;
|
||||
|
|
Loading…
Reference in a new issue