[coreboot-gerrit] New patch to review for coreboot: 052f483 smbios: Use smbios_mainboard_manufacturer instead MAINBOARD_SMBIOS_MANUFACTURER.

Vladimir Serbinenko (phcoder@gmail.com) gerrit at coreboot.org
Sat May 30 23:10:47 CEST 2015


Vladimir Serbinenko (phcoder at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10381

-gerrit

commit 052f483577674ab9850570fda2e4a657012b4e39
Author: Vladimir Serbinenko <phcoder at gmail.com>
Date:   Sat May 30 23:09:53 2015 +0200

    smbios: Use smbios_mainboard_manufacturer instead MAINBOARD_SMBIOS_MANUFACTURER.
    
    Be consistent.
    
    Change-Id: I13df06fbc86371bfcb4ddd809d07c9e7fb931018
    Signed-off-by: Vladimir Serbinenko <phcoder at gmail.com>
---
 src/arch/x86/boot/smbios.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/arch/x86/boot/smbios.c b/src/arch/x86/boot/smbios.c
index ddebb52..11c2d1c 100644
--- a/src/arch/x86/boot/smbios.c
+++ b/src/arch/x86/boot/smbios.c
@@ -362,7 +362,7 @@ static int smbios_write_type3(unsigned long *current, int handle)
 	t->type = SMBIOS_SYSTEM_ENCLOSURE;
 	t->handle = handle;
 	t->length = len - 2;
-	t->manufacturer = smbios_add_string(t->eos, CONFIG_MAINBOARD_SMBIOS_MANUFACTURER);
+	t->manufacturer = smbios_add_string(t->eos, smbios_mainboard_manufacturer());
 	t->bootup_state = SMBIOS_STATE_SAFE;
 	t->power_supply_state = SMBIOS_STATE_SAFE;
 	t->thermal_state = SMBIOS_STATE_SAFE;



More information about the coreboot-gerrit mailing list