diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-09-29 12:46:46 +0200 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2022-09-30 06:17:38 +0000 |
commit | 7ac796c7b2a75fc6de7692114c6c9f2ad0755428 (patch) | |
tree | 064c0c882c32e38cfbefdcb617030802150a4a09 /src/mainboard/ocp/tiogapass | |
parent | de6ecd0101606cd2dcf9a970e8bd7784fb4962d9 (diff) |
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>
Diffstat (limited to 'src/mainboard/ocp/tiogapass')
-rw-r--r-- | src/mainboard/ocp/tiogapass/ramstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/ocp/tiogapass/ramstage.c b/src/mainboard/ocp/tiogapass/ramstage.c index 905bde1425..c69322b77a 100644 --- a/src/mainboard/ocp/tiogapass/ramstage.c +++ b/src/mainboard/ocp/tiogapass/ramstage.c @@ -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; |