@@ -661,7 +661,7 @@ invalid:
*/
const PropertyInfo xen_block_prop_vdev = {
.type = "str",
- .description = "Virtual Disk specifier: d*p*/xvd*/hd*/sd*",
+ .description = "Virtual Disk specifier (d*p*/xvd*/hd*/sd*)",
.get = xen_block_get_vdev,
.set = xen_block_set_vdev,
};
@@ -985,7 +985,7 @@ inval:
const PropertyInfo qdev_prop_pci_host_devaddr = {
.type = "str",
- .description = "Address (bus/device/function) of "
+ .description = "Address (bus:device.function) of "
"the host device, example: 04:10.0",
.get = get_pci_host_devaddr,
.set = set_pci_host_devaddr,
@@ -247,6 +247,7 @@ static void set_bool(Object *obj, Visitor *v, const char *name, void *opaque,
const PropertyInfo qdev_prop_bool = {
.type = "bool",
+ .description = "on/off",
.get = get_bool,
.set = set_bool,
.set_default_value = set_default_value_bool,
@@ -75,8 +75,8 @@ static void ccw_device_set_loadparm(Object *obj, Visitor *v,
const PropertyInfo ccw_loadparm = {
.type = "str",
- .description = "Up to 8 chars in set of [A-Za-z0-9. ] to pass"
- " to the guest loader/kernel",
+ .description = "Up to 8 chars in set of [A-Za-z0-9. ] to select"
+ " a guest kernel",
.get = ccw_device_get_loadparm,
.set = ccw_device_set_loadparm,
};
@@ -870,6 +870,7 @@ static void sparc_set_nwindows(Object *obj, Visitor *v, const char *name,
static PropertyInfo qdev_prop_nwindows = {
.type = "int",
+ .description = "Number of register windows",
.get = sparc_get_nwindows,
.set = sparc_set_nwindows,
};
Signed-off-by: Markus Armbruster <armbru@redhat.com> --- hw/block/xen-block.c | 2 +- hw/core/qdev-properties-system.c | 2 +- hw/core/qdev-properties.c | 1 + hw/s390x/ccw-device.c | 4 ++-- target/sparc/cpu.c | 1 + 5 files changed, 6 insertions(+), 4 deletions(-)