From b7a666e32b6236765433b5485c09ea4e006f2cb1 Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Tue, 7 Nov 2006 13:14:43 +0000 Subject: [PATCH] qemu-i386: Fix mainboard chip_operations Use designated initialiser; this makes sure it will use the correct struct member, too (it didn't before). Also change the name string to use the canonical format. Signed-off-by: Segher Boessenkool Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@36 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- src/mainboard/emulation/qemu-i386/mainboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/emulation/qemu-i386/mainboard.c b/src/mainboard/emulation/qemu-i386/mainboard.c index 3992196080..6418f50218 100644 --- a/src/mainboard/emulation/qemu-i386/mainboard.c +++ b/src/mainboard/emulation/qemu-i386/mainboard.c @@ -23,6 +23,6 @@ #include "dtc.h" struct chip_operations mainboard_emulation_qemu_i386_ops = { - "qemu mainboard " + .name = "QEMU Mainboard" };