mb/ocp/{deltalake,tiogapass}: Replace comma with semicolon

Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: Ie564d080955097b416943e772de6c62708ce5764
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67971
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Elyes Haouas 2022-09-29 12:46:46 +02:00 committed by Arthur Heymans
parent de6ecd0101
commit 7ac796c7b2
2 changed files with 2 additions and 2 deletions

View File

@ -336,7 +336,7 @@ unsigned int smbios_processor_characteristics(void)
static void mainboard_enable(struct device *dev)
{
dev->ops->get_smbios_strings = dl_oem_smbios_strings,
dev->ops->get_smbios_strings = dl_oem_smbios_strings;
read_fru_areas(CONFIG_BMC_KCS_BASE, CONFIG_FRU_DEVICE_ID, 0, &fru_strings);
dev->ops->get_smbios_data = mainboard_smbios_data;
}

View File

@ -165,7 +165,7 @@ static void tp_oem_smbios_strings(struct device *dev, struct smbios_type11 *t)
static void mainboard_enable(struct device *dev)
{
dev->ops->get_smbios_strings = tp_oem_smbios_strings,
dev->ops->get_smbios_strings = tp_oem_smbios_strings;
read_fru_areas(CONFIG_BMC_KCS_BASE, CONFIG_FRU_DEVICE_ID, 0, &fru_strings);
#if CONFIG(GENERATE_SMBIOS_TABLES)
dev->ops->get_smbios_data = mainboard_smbios_data;