diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-01-11 21:50:36 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-13 17:17:54 +0000 |
commit | d459403e651207a1e8ecd5308ff82286c4adeae7 (patch) | |
tree | 727e4579539f397079eb3b6bcf7ba51fca5ec2a5 /src/mainboard/ocp | |
parent | 55380631f4d02dc06bbdf2295d5c2df8deac9b5b (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/mainboard/ocp')
-rw-r--r-- | src/mainboard/ocp/deltalake/ramstage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/ocp/deltalake/ramstage.c b/src/mainboard/ocp/deltalake/ramstage.c index d553392e16..c24d004ed0 100644 --- a/src/mainboard/ocp/deltalake/ramstage.c +++ b/src/mainboard/ocp/deltalake/ramstage.c @@ -278,6 +278,7 @@ static int create_smbios_type9(int *handle, unsigned long *current) slot_id, characteristics_1, characteristics_2, + 0, /* segment group */ stack_busnos[slotinfo[index].stack], slotinfo[index].dev_func); } |