mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
qom: Use returned bool to check for failure, manual part
The previous commit used Coccinelle to convert from checking the Error object to checking the return value. Convert a few more manually. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20200707160613.848843-30-armbru@redhat.com>
This commit is contained in:
parent
778a2dc592
commit
f07ad48d46
3 changed files with 9 additions and 17 deletions
|
@ -166,11 +166,7 @@ BusState *qbus_create(const char *typename, DeviceState *parent, const char *nam
|
|||
|
||||
bool qbus_realize(BusState *bus, Error **errp)
|
||||
{
|
||||
Error *err = NULL;
|
||||
|
||||
object_property_set_bool(OBJECT(bus), "realized", true, &err);
|
||||
error_propagate(errp, err);
|
||||
return !err;
|
||||
return object_property_set_bool(OBJECT(bus), "realized", true, errp);
|
||||
}
|
||||
|
||||
void qbus_unrealize(BusState *bus)
|
||||
|
|
|
@ -388,8 +388,6 @@ void qdev_simple_device_unplug_cb(HotplugHandler *hotplug_dev,
|
|||
*/
|
||||
bool qdev_realize(DeviceState *dev, BusState *bus, Error **errp)
|
||||
{
|
||||
Error *err = NULL;
|
||||
|
||||
assert(!dev->realized && !dev->parent_bus);
|
||||
|
||||
if (bus) {
|
||||
|
@ -398,10 +396,7 @@ bool qdev_realize(DeviceState *dev, BusState *bus, Error **errp)
|
|||
assert(!DEVICE_GET_CLASS(dev)->bus_type);
|
||||
}
|
||||
|
||||
if (!object_property_set_bool(OBJECT(dev), "realized", true, &err)) {
|
||||
error_propagate(errp, err);
|
||||
}
|
||||
return !err;
|
||||
return object_property_set_bool(OBJECT(dev), "realized", true, errp);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue