qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT 98ba263] qdev: c99 initilaizers for bus_type_name


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 98ba263] qdev: c99 initilaizers for bus_type_names
Date: Mon, 08 Jun 2009 17:39:55 -0000

From: Gerd Hoffmann <address@hidden>

Signed-off-by: Gerd Hoffmann <address@hidden>

diff --git a/hw/qdev.c b/hw/qdev.c
index 5175fe1..689cf4c 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -340,11 +340,11 @@ BusState *qbus_create(BusType type, size_t size,
 }
 
 static const char *bus_type_names[] = {
-    "System",
-    "PCI",
-    "SCSI",
-    "I2C",
-    "SSI"
+    [ BUS_TYPE_SYSTEM ] = "System",
+    [ BUS_TYPE_PCI ]    = "PCI",
+    [ BUS_TYPE_SCSI ]   = "SCSI",
+    [ BUS_TYPE_I2C ]    = "I2C",
+    [ BUS_TYPE_SSI ]    = "SSI",
 };
 
 #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## 
__VA_ARGS__)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]