summaryrefslogtreecommitdiff
path: root/drivers/firmware/efi/libstub/arm64.c
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2024-07-01 18:29:59 +0200
committerArd Biesheuvel <ardb@kernel.org>2024-07-02 00:42:04 +0200
commit0dad9ee3c13930fe8122f2efc936fcd1c277a00d (patch)
treeef5363566fa196b9d33e68743cee7b706e5e53ab /drivers/firmware/efi/libstub/arm64.c
parent37aee82c213d352dccb850dc4228dda2e7e591b1 (diff)
efistub/smbios: Simplify SMBIOS enumeration API
Update the efi_get_smbios_string() macro to take a pointer to the entire record struct rather than the header. This removes the need to pass the type explicitly, as it can be inferred from the typed pointer. Also, drop 'type' from the prototype of __efi_get_smbios_string(), as it is never referenced. Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware/efi/libstub/arm64.c')
-rw-r--r--drivers/firmware/efi/libstub/arm64.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/firmware/efi/libstub/arm64.c b/drivers/firmware/efi/libstub/arm64.c
index 446e35eaf3d9..e57cd3de0a00 100644
--- a/drivers/firmware/efi/libstub/arm64.c
+++ b/drivers/firmware/efi/libstub/arm64.c
@@ -39,8 +39,7 @@ static bool system_needs_vamap(void)
static char const emag[] = "eMAG";
default:
- version = efi_get_smbios_string(&record->header, 4,
- processor_version);
+ version = efi_get_smbios_string(record, processor_version);
if (!version || (strncmp(version, altra, sizeof(altra) - 1) &&
strncmp(version, emag, sizeof(emag) - 1)))
break;