[coreboot] New patch to review for coreboot: 009934f coreinfo: fix build error (TRIVIAL)
Alexandru Gagniuc (mr.nuke.me@gmail.com)
gerrit at coreboot.org
Wed Aug 15 13:42:35 CEST 2012
Alexandru Gagniuc (mr.nuke.me at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1453
-gerrit
commit 009934f7822fa6eefeb0f2e74aaee29bc4048348
Author: Alexandru Gagniuc <mr.nuke.me at gmail.com>
Date: Wed Aug 15 06:36:00 2012 -0500
coreinfo: fix build error (TRIVIAL)
Changes to libpayload, and lack of maintenance to coreinfo, and it no
longer builds. Fix that.
Change-Id: I03497880671f42b5aeb6db08ddf6ce2acd243a18
Signed-off-by: Alexandru Gagniuc <mr.nuke.me at gmail.com>
---
payloads/coreinfo/coreboot_module.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/coreinfo/coreboot_module.c b/payloads/coreinfo/coreboot_module.c
index 77a4bb2..e5ba50f 100644
--- a/payloads/coreinfo/coreboot_module.c
+++ b/payloads/coreinfo/coreboot_module.c
@@ -142,7 +142,7 @@ static void parse_mainboard(unsigned char *ptr)
{
struct cb_mainboard *mb = (struct cb_mainboard *)ptr;
- strncpy(cb_info.vendor, cb_mb_vendor_part(mb), sizeof(cb_info.vendor) - 1);
+ strncpy(cb_info.vendor, cb_mb_vendor_string(mb), sizeof(cb_info.vendor) - 1);
strncpy(cb_info.part, cb_mb_part_string(mb), sizeof(cb_info.part) - 1);
}
More information about the coreboot
mailing list