projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40ea285
)
qdev: Add rudimentary help for property value
author
Markus Armbruster
<armbru@redhat.com>
Fri, 29 Jan 2010 18:49:02 +0000
(19:49 +0100)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Wed, 3 Feb 2010 18:39:01 +0000
(12:39 -0600)
This provides the same information as reverted commit
2ba6edf0
. Not
much, just better than nothing.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/qdev.c
patch
|
blob
|
history
diff --git
a/hw/qdev.c
b/hw/qdev.c
index 7c3701c4e41f3fcfca69f01e04175f8aea57e2d7..539b5a2009b740cd24778303206888795551410b 100644
(file)
--- a/
hw/qdev.c
+++ b/
hw/qdev.c
@@
-179,7
+179,7
@@
int qdev_device_help(QemuOpts *opts)
}
for (prop = info->props; prop && prop->name; prop++) {
- qemu_error("%s.%s
\n", info->name, prop
->name);
+ qemu_error("%s.%s
=%s\n", info->name, prop->name, prop->info
->name);
}
return 1;
}