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 | |
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')
-rw-r--r-- | src/include/smbios.h | 2 | ||||
-rw-r--r-- | src/lib/smbios.c | 6 |
2 files changed, 4 insertions, 4 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; diff --git a/src/lib/smbios.c b/src/lib/smbios.c index fb68b4f376..12fbdfa594 100644 --- a/src/lib/smbios.c +++ b/src/lib/smbios.c @@ -971,7 +971,7 @@ int smbios_write_type39(unsigned long *current, int *handle, } 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) { struct smbios_type41 *t = smbios_carve_table(*current, @@ -982,7 +982,7 @@ int smbios_write_type41(unsigned long *current, int *handle, t->device_type = device_type; t->device_status = 1; t->device_type_instance = instance; - t->segment_group_number = segment; + t->segment_group_number = segment_group; t->bus_number = bus; t->device_number = device; t->function_number = function; @@ -1114,7 +1114,7 @@ static int smbios_generate_type41_from_devtree(struct device *dev, int *handle, return smbios_write_type41(current, handle, name, // name instance_id, // inst - 0, // segment + 0, // segment group dev->bus->secondary, //bus PCI_SLOT(dev->path.pci.devfn), // device PCI_FUNC(dev->path.pci.devfn), // func |