]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi: smbios: Drop support for SMBIOS2 tables
authorSimon Glass <sjg@chromium.org>
Sun, 31 Dec 2023 15:25:52 +0000 (08:25 -0700)
committerSimon Glass <sjg@chromium.org>
Sun, 7 Jan 2024 20:45:07 +0000 (13:45 -0700)
Only the v3 table is supported now, so always use this when installing
the EFI table.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/efi_smbios.c

index 5cbce6dc4eb2ef3275b0c3c2f97af3cfef0636d5..5db342ee0d7cfed7ab25c97fb8962ca997e31b98 100644 (file)
@@ -27,7 +27,6 @@ enum {
  */
 efi_status_t efi_smbios_register(void)
 {
-       const efi_guid_t *guid;
        ulong addr;
        efi_status_t ret;
        void *buf;
@@ -47,8 +46,7 @@ efi_status_t efi_smbios_register(void)
 
        /* Install SMBIOS information as configuration table */
        buf = map_sysmem(addr, 0);
-       guid = !memcmp(buf, "_SM_", 4) ? &smbios_guid : &smbios3_guid;
-       ret = efi_install_configuration_table(guid, buf);
+       ret = efi_install_configuration_table(&smbios3_guid, buf);
        unmap_sysmem(buf);
 
        return ret;