diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-01-11 21:51:19 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-13 17:18:13 +0000 |
commit | 363ac8b6aef3fa252f06086db4956cb9d703b556 (patch) | |
tree | 2dfb78784126c7876d08de869d638ea0111c6ba6 /src/include | |
parent | d459403e651207a1e8ecd5308ff82286c4adeae7 (diff) |
lib/smbios: rename segment group parameter of smbios_write_type41
Rename the segment group parameter of smbios_write_type41 from 'segment'
to 'segment_group' to be in line with the PCI specification.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ie6ca0ce8b6b3b0357df72bafa2b6069132d0937e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79926
Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/smbios.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/smbios.h b/src/include/smbios.h index f82198002f..d4ae662c57 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -41,7 +41,7 @@ int smbios_write_type38(unsigned long *current, int *handle, const u64 base_addr, const u8 base_modifier, const u8 irq); int smbios_write_type41(unsigned long *current, int *handle, - const char *name, u8 instance, u16 segment, + const char *name, u8 instance, u16 segment_group, u8 bus, u8 device, u8 function, u8 device_type); enum smbios_temp_location; enum smbios_temp_status; |