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: Gerd Hoffmann
Subject: Re: [Qemu-devel] [PATCH 14/32] qdev/prop: convert qdev.c to helper macros.
Date: Tue, 04 Aug 2009 15:43:53 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Lightning/1.0pre Thunderbird/3.0b2

On 08/04/09 15:27, Anthony Liguori wrote:
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.

Indeed.  Just drop that patch.

It is part of a little temporary patch to make gcc complain about any not-yet converted property. It wasn't intended to sneak into public ...

cheers,
  Gerd





reply via email to

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