aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc/qfw_smbios.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-02-03 09:11:25 -0500
committerTom Rini <trini@konsulko.com>2024-02-03 09:11:25 -0500
commit819abd0a1eaff9a921f5b917e152b85dab302e33 (patch)
treed1d299e98db982d1379cb1d2a009e1c437dbb454 /drivers/misc/qfw_smbios.c
parent050a9b981d6a835133521b599be3ae189ce70f41 (diff)
parent406c410ef747d66e16f2f5494cbf88ba1307224f (diff)
Merge tag 'smbios-2024-04-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request smbios-2024-04-rc2 * In smbios command - write 'Not Specified' for missing strings - show correct table size for SMBIOS2.1 entry point - adjust formatting of handle numbers - add missing colon after UUID * In generated SMBIOS table - avoid introducing 'Unknown' string for missing properties - provide RISC-V vendor ID in the type 4 structure - provide the correct chassis handle in structure type 2 * Rename Structure Table Maximum Size field in SMBIOS 3 entry point
Diffstat (limited to 'drivers/misc/qfw_smbios.c')
-rw-r--r--drivers/misc/qfw_smbios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/qfw_smbios.c b/drivers/misc/qfw_smbios.c
index a898cb4eea..c3e8c310d0 100644
--- a/drivers/misc/qfw_smbios.c
+++ b/drivers/misc/qfw_smbios.c
@@ -90,7 +90,7 @@ static int qfw_parse_smbios_anchor(struct udevice *dev,
entry->length = sizeof(struct smbios3_entry);
entry->major_ver = entry2->major_ver;
entry->minor_ver = entry2->minor_ver;
- entry->max_struct_size = entry2->struct_table_length;
+ entry->table_maximum_size = entry2->struct_table_length;
} else {
ret = -ENOENT;
goto out;