On 01/21/10 17:44, Markus Armbruster wrote:
Markus Armbruster writes:
-fprintf(stderr, "property \"%s.%s\" not found\n",
-dev->info->name, name);
+fprintf(stderr, "%s.%s\n", dev->info->name, props->name);
+props++;
One quest
Markus Armbruster writes:
> Stefan Weil writes:
>
>> When called with property "?", a list of supported
>> properties will be printed (instead of an error message).
>>
>> This is useful for command lines like
>> qemu -device e1000,?
>> and was already standard for other options like model=?
Stefan Weil writes:
> When called with property "?", a list of supported
> properties will be printed (instead of an error message).
>
> This is useful for command lines like
> qemu -device e1000,?
> and was already standard for other options like model=?
>
> Signed-off-by: Stefan Weil
> -
When called with property "?", a list of supported
properties will be printed (instead of an error message).
This is useful for command lines like
qemu -device e1000,?
and was already standard for other options like model=?
Signed-off-by: Stefan Weil
---
hw/qdev-properties.c | 15