qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 5/7] qdev: set the object property's description to


From: arei.gonglei
Subject: [Qemu-devel] [PATCH 5/7] qdev: set the object property's description to the qdev property's.
Date: Tue, 23 Sep 2014 21:08:35 +0800

From: Gonglei <address@hidden>

When we call qdev_alias_all_properties() adding alias properties to
the source object all qdev properties on the target DeviceState,
set the object property's description to the qdev property's.

c: Paolo Bonzini <address@hidden>
Cc: Michael S. Tsirkin <address@hidden>
Cc: Markus Armbruster <address@hidden>
Signed-off-by: Gonglei <address@hidden>
---
 hw/core/qdev.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/core/qdev.c b/hw/core/qdev.c
index fcb1638..61d352c 100644
--- a/hw/core/qdev.c
+++ b/hw/core/qdev.c
@@ -796,6 +796,9 @@ void qdev_alias_all_properties(DeviceState *target, Object 
*source)
             object_property_add_alias(source, prop->name,
                                       OBJECT(target), prop->name,
                                       &error_abort);
+            object_property_set_description(source, prop->name,
+                                            prop->info->description,
+                                            &error_abort);
         }
         class = object_class_get_parent(class);
     } while (class != object_class_by_name(TYPE_DEVICE));
-- 
1.7.12.4





reply via email to

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