qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 14/32] qdev/prop: convert qdev.c to helper macro


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH 14/32] qdev/prop: convert qdev.c to helper macros.
Date: Tue, 04 Aug 2009 08:27:15 -0500
User-agent: Thunderbird 2.0.0.21 (X11/20090320)

Gerd Hoffmann wrote:
Signed-off-by: Gerd Hoffmann <address@hidden>
---
 hw/qdev.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/qdev.c b/hw/qdev.c
index 9488dba..3de3bc9 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -543,8 +543,8 @@ static void qdev_print_props(Monitor *mon, DeviceState 
*dev, Property *props,
     if (!props)
         return;
     while (props->name) {
-        if (props->info->print) {
-            props->info->print(dev, props, buf, sizeof(buf));
+        if (props->xinfo->print) {
+            props->xinfo->print(dev, props, buf, sizeof(buf));
             qdev_printf("%s-prop: %s = %s\n", prefix, props->name, buf);
         }
         props++;
This doesn't match the description and breaks the build for me.

Regards,

Anthony Liguori




reply via email to

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