summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorToomas Soome <tsoome@me.com>2022-08-04 20:09:34 +0300
committerToomas Soome <tsoome@me.com>2022-08-06 22:39:11 +0300
commit051bd850f53c8034271a9fd12ce95ca63d008a12 (patch)
tree753cf2f87a4eaa7acae6ff10ae2c29147691681c /usr
parentc9645fac1ea94ab03679849e593a401e6e6f5792 (diff)
downloadillumos-joyent-051bd850f53c8034271a9fd12ce95ca63d008a12.tar.gz
14889 efi.h: EFI_MEMORY_DESCRIPTOR has fields swapped
Reviewed by: Andrew Stormont <andyjstormont@gmail.com> Approved by: Robert Mustacchi <rm@fingolfin.org>
Diffstat (limited to 'usr')
-rw-r--r--usr/src/uts/common/sys/efi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/efi.h b/usr/src/uts/common/sys/efi.h
index abd6779fde..a8726a1b1e 100644
--- a/usr/src/uts/common/sys/efi.h
+++ b/usr/src/uts/common/sys/efi.h
@@ -128,8 +128,8 @@ typedef enum {
#define EFI_MEMORY_DESCRIPTOR_VERSION 1
typedef struct {
uint32_t Type;
- EFI_PHYSICAL_ADDRESS PhysicalStart;
uint32_t Pad;
+ EFI_PHYSICAL_ADDRESS PhysicalStart;
EFI_VIRTUAL_ADDRESS VirtualStart;
uint64_t NumberOfPages;
uint64_t Attribute;