mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
qdev: Avoid using prop->name unnecessarily
We already get the property name as argument to the property getter and setters, we don't need to use prop->name. This will make it easier to remove the Property.name field in the future. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Message-Id: <20201211220529.2290218-20-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
e68c2cb75a
commit
991f0ac901
3 changed files with 10 additions and 10 deletions
|
@ -141,7 +141,7 @@ static void set_drive_helper(Object *obj, Visitor *v, const char *name,
|
|||
}
|
||||
if (!blk) {
|
||||
error_setg(errp, "Property '%s.%s' can't find value '%s'",
|
||||
object_get_typename(OBJECT(dev)), prop->name, str);
|
||||
object_get_typename(OBJECT(dev)), name, str);
|
||||
goto fail;
|
||||
}
|
||||
if (blk_attach_dev(blk, dev) < 0) {
|
||||
|
@ -262,10 +262,10 @@ static void set_chr(Object *obj, Visitor *v, const char *name, void *opaque,
|
|||
s = qemu_chr_find(str);
|
||||
if (s == NULL) {
|
||||
error_setg(errp, "Property '%s.%s' can't find value '%s'",
|
||||
object_get_typename(obj), prop->name, str);
|
||||
object_get_typename(obj), name, str);
|
||||
} else if (!qemu_chr_fe_init(be, s, errp)) {
|
||||
error_prepend(errp, "Property '%s.%s' can't take value '%s': ",
|
||||
object_get_typename(obj), prop->name, str);
|
||||
object_get_typename(obj), name, str);
|
||||
}
|
||||
g_free(str);
|
||||
}
|
||||
|
@ -966,7 +966,7 @@ static void get_prop_pcielinkspeed(Object *obj, Visitor *v, const char *name,
|
|||
abort();
|
||||
}
|
||||
|
||||
visit_type_enum(v, prop->name, &speed, prop->info->enum_table, errp);
|
||||
visit_type_enum(v, name, &speed, prop->info->enum_table, errp);
|
||||
}
|
||||
|
||||
static void set_prop_pcielinkspeed(Object *obj, Visitor *v, const char *name,
|
||||
|
@ -982,7 +982,7 @@ static void set_prop_pcielinkspeed(Object *obj, Visitor *v, const char *name,
|
|||
return;
|
||||
}
|
||||
|
||||
if (!visit_type_enum(v, prop->name, &speed, prop->info->enum_table,
|
||||
if (!visit_type_enum(v, name, &speed, prop->info->enum_table,
|
||||
errp)) {
|
||||
return;
|
||||
}
|
||||
|
@ -1051,7 +1051,7 @@ static void get_prop_pcielinkwidth(Object *obj, Visitor *v, const char *name,
|
|||
abort();
|
||||
}
|
||||
|
||||
visit_type_enum(v, prop->name, &width, prop->info->enum_table, errp);
|
||||
visit_type_enum(v, name, &width, prop->info->enum_table, errp);
|
||||
}
|
||||
|
||||
static void set_prop_pcielinkwidth(Object *obj, Visitor *v, const char *name,
|
||||
|
@ -1067,7 +1067,7 @@ static void set_prop_pcielinkwidth(Object *obj, Visitor *v, const char *name,
|
|||
return;
|
||||
}
|
||||
|
||||
if (!visit_type_enum(v, prop->name, &width, prop->info->enum_table,
|
||||
if (!visit_type_enum(v, name, &width, prop->info->enum_table,
|
||||
errp)) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue