summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2024-01-11 21:50:36 +0100
committerFelix Held <felix-coreboot@felixheld.de>2024-01-13 17:17:54 +0000
commitd459403e651207a1e8ecd5308ff82286c4adeae7 (patch)
tree727e4579539f397079eb3b6bcf7ba51fca5ec2a5 /src/include
parent55380631f4d02dc06bbdf2295d5c2df8deac9b5b (diff)
lib/smbios: add segment_group parameter to smbios_write_type9
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I48b393913913db8436f5cbca04d7411e68a53cf7 Reviewed-on: https://review.coreboot.org/c/coreboot/+/79925 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Johnny Lin <Johnny_Lin@wiwynn.com> Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/smbios.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/smbios.h b/src/include/smbios.h
index f02b48b0c0..f82198002f 100644
--- a/src/include/smbios.h
+++ b/src/include/smbios.h
@@ -32,7 +32,8 @@ int smbios_write_type9(unsigned long *current, int *handle,
const enum slot_data_bus_bandwidth bandwidth,
const enum misc_slot_usage usage,
const enum misc_slot_length length,
- const u16 id, u8 slot_char1, u8 slot_char2, u8 bus, u8 dev_func);
+ const u16 id, u8 slot_char1, u8 slot_char2,
+ u8 segment_group, u8 bus, u8 dev_func);
enum smbios_bmc_interface_type;
int smbios_write_type38(unsigned long *current, int *handle,
const enum smbios_bmc_interface_type interface_type,