Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

firmware: dmi: Correct an indexing error in dmi.h

The entries later in enum dmi_entry_type don't match the SMBIOS
specification¹.

The entry for type 33: `64-Bit Memory Error Information` is not present and
thus the index for all later entries is incorrect.

Add it.

Also, add missing entry types 43-46, while at it.

¹ Search for "System Management BIOS (SMBIOS) Reference Specification"

[ bp: Drop the flaky SMBIOS spec URL. ]

Fixes: 93c890dbe5287 ("firmware: Add DMI entry types to the headers")
Signed-off-by: Mario Limonciello (AMD) <superm1@kernel.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Reviewed-by: Yazen Ghannam <yazen.ghannam@amd.com>
Link: https://patch.msgid.link/20260307141024.819807-2-superm1@kernel.org

authored by

Mario Limonciello (AMD) and committed by
Borislav Petkov (AMD)
c064abc6 8b793a92

+5
+5
include/linux/dmi.h
··· 60 60 DMI_ENTRY_OOB_REMOTE_ACCESS, 61 61 DMI_ENTRY_BIS_ENTRY, 62 62 DMI_ENTRY_SYSTEM_BOOT, 63 + DMI_ENTRY_64_MEM_ERROR, 63 64 DMI_ENTRY_MGMT_DEV, 64 65 DMI_ENTRY_MGMT_DEV_COMPONENT, 65 66 DMI_ENTRY_MGMT_DEV_THRES, ··· 70 69 DMI_ENTRY_ADDITIONAL, 71 70 DMI_ENTRY_ONBOARD_DEV_EXT, 72 71 DMI_ENTRY_MGMT_CONTROLLER_HOST, 72 + DMI_ENTRY_TPM_DEVICE, 73 + DMI_ENTRY_PROCESSOR_ADDITIONAL, 74 + DMI_ENTRY_FIRMWARE_INVENTORY, 75 + DMI_ENTRY_STRING_PROPERTY, 73 76 DMI_ENTRY_INACTIVE = 126, 74 77 DMI_ENTRY_END_OF_TABLE = 127, 75 78 };