diff options
author | Ilias Apalodimas | 2021-06-09 18:14:47 +0300 |
---|---|---|
committer | Heinrich Schuchardt | 2021-06-28 19:57:13 +0200 |
commit | ff192304b69944734a661227c2d00aab5b15cdaf (patch) | |
tree | bb02650c63e3053e4dfd16317c3298916d1ca1fa /include | |
parent | a86ed41bff94f90af2e1a8798e20920ef0353e97 (diff) |
smbios: Fix BIOS Characteristics Extension Byte 2
We currently define the EFI support of an SMBIOS table as the third bit of
"BIOS Characteristics Extension Byte 1". The latest DMTF spec defines it
on "BIOS Characteristics Extension Byte 2".
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Remove superfluous assignment.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/smbios.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/smbios.h b/include/smbios.h index ffeefb47372..fc49fc10b9d 100644 --- a/include/smbios.h +++ b/include/smbios.h @@ -60,7 +60,7 @@ struct __packed smbios_entry { #define BIOS_CHARACTERISTICS_SELECTABLE_BOOT (1 << 16) #define BIOS_CHARACTERISTICS_EXT1_ACPI (1 << 0) -#define BIOS_CHARACTERISTICS_EXT1_UEFI (1 << 3) +#define BIOS_CHARACTERISTICS_EXT2_UEFI (1 << 3) #define BIOS_CHARACTERISTICS_EXT2_TARGET (1 << 2) struct __packed smbios_type0 { |