Author: hailfinger Date: 2008-08-26 01:54:50 +0200 (Tue, 26 Aug 2008) New Revision: 822
Modified: coreboot-v3/arch/x86/coreboot_table.c Log: mainboard_vendor and mainboard_name are constant. Follow that convention everywhere. This fixes a bug triggered by combined compilation.
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net Acked-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Modified: coreboot-v3/arch/x86/coreboot_table.c =================================================================== --- coreboot-v3/arch/x86/coreboot_table.c 2008-08-25 05:11:59 UTC (rev 821) +++ coreboot-v3/arch/x86/coreboot_table.c 2008-08-25 23:54:50 UTC (rev 822) @@ -142,7 +142,7 @@ { struct lb_record *rec; struct lb_mainboard *mainboard; - extern char *mainboard_vendor, *mainboard_name; + extern const char *mainboard_vendor, *mainboard_name; rec = lb_new_record(header); mainboard = (struct lb_mainboard *)rec; mainboard->tag = LB_TAG_MAINBOARD;