qdev: Add rudimentary help for property value

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>
This commit is contained in:
Markus Armbruster 2010-01-29 19:49:02 +01:00 committed by Anthony Liguori
parent 40ea285c14
commit 117f8eb81d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}