qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] qdev/prop: convert isa-bus to helper macros.


From: Gerd Hoffmann
Subject: [Qemu-devel] [PATCH] qdev/prop: convert isa-bus to helper macros.
Date: Tue, 11 Aug 2009 11:38:30 +0200

Signed-off-by: Gerd Hoffmann <address@hidden>
---
 hw/isa-bus.c |   15 +++------------
 1 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/hw/isa-bus.c b/hw/isa-bus.c
index 8c14b1d..315efbb 100644
--- a/hw/isa-bus.c
+++ b/hw/isa-bus.c
@@ -29,18 +29,9 @@ static struct BusInfo isa_bus_info = {
     .name  = "ISA",
     .size  = sizeof(ISABus),
     .props = (Property[]) {
-        {
-            .name   = "iobase",
-            .info   = &qdev_prop_hex32,
-            .offset = offsetof(ISADevice, iobase[0]),
-            .defval = (uint32_t[]) { -1 },
-        },{
-            .name   = "iobase2",
-            .info   = &qdev_prop_hex32,
-            .offset = offsetof(ISADevice, iobase[1]),
-            .defval = (uint32_t[]) { -1 },
-        },
-        {/* end of list */}
+        DEFINE_PROP_HEX32("iobase",  ISADevice, iobase[0], -1),
+        DEFINE_PROP_HEX32("iobase2", ISADevice, iobase[1], -1),
+        DEFINE_PROP_END_OF_LIST(),
     }
 };
 
-- 
1.6.2.5





reply via email to

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