All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qdev/prop: convert isa-bus to helper macros.
@ 2009-08-11  9:38 Gerd Hoffmann
  0 siblings, 0 replies; only message in thread
From: Gerd Hoffmann @ 2009-08-11  9:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann


Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2009-08-11  9:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-11  9:38 [Qemu-devel] [PATCH] qdev/prop: convert isa-bus to helper macros Gerd Hoffmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.