]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
efi_loader: replace find_smbios_table by library function
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 26 Jan 2024 08:13:22 +0000 (09:13 +0100)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 29 Jan 2024 10:31:28 +0000 (11:31 +0100)
The code in find_smbios_table() is redundant to
efi_get_configuration_table(). Replace it.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
lib/efi_loader/efi_tcg2.c

index 85562c50a1cdbd557fcbe5766117b2116421c5d0..b5d4aa7be52afa326bbc2cde1463e31c96bf988d 100644 (file)
@@ -1128,23 +1128,6 @@ out:
        return ret;
 }
 
-/**
- * find_smbios_table() - find smbios table
- *
- * Return:     pointer to the smbios table
- */
-static void *find_smbios_table(void)
-{
-       u32 i;
-
-       for (i = 0; i < systab.nr_tables; i++) {
-               if (!guidcmp(&smbios3_guid, &systab.tables[i].guid))
-                       return systab.tables[i].table;
-       }
-
-       return NULL;
-}
-
 /**
  * tcg2_measure_gpt_table() - measure gpt table
  *
@@ -1387,7 +1370,7 @@ efi_status_t efi_tcg2_measure_efi_app_invocation(struct efi_loaded_image_obj *ha
        if (ret != EFI_SUCCESS)
                goto out;
 
-       entry = (struct smbios3_entry *)find_smbios_table();
+       entry = efi_get_configuration_table(&smbios3_guid);
        if (entry) {
                ret = tcg2_measure_smbios(dev, entry);
                if (ret != EFI_SUCCESS)