From: Philippe Mathieu-Daudé Date: Mon, 20 Jul 2020 12:16:59 +0000 (+0200) Subject: qdev: Document qdev_prop_set_drive_err() return value X-Git-Tag: v5.2.0-rc0~171^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0aca03a3f182ca460a4ffa60239e8addb0f3d493;p=thirdparty%2Fqemu.git qdev: Document qdev_prop_set_drive_err() return value Since commit 73ac1aac39 qdev_prop_set_drive_err() returns a boolean value. Document it. Fixes: 73ac1aac39 "Make functions taking Error ** return bool, not void" Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20200720121659.31886-1-f4bug@amsat.org> Signed-off-by: Eduardo Habkost --- diff --git a/include/hw/qdev-properties.h b/include/hw/qdev-properties.h index 8f3a98cba69..528310bb22f 100644 --- a/include/hw/qdev-properties.h +++ b/include/hw/qdev-properties.h @@ -238,6 +238,8 @@ extern const PropertyInfo qdev_prop_pcie_link_width; /* * Set properties between creation and realization. + * + * Returns: %true on success, %false on error. */ bool qdev_prop_set_drive_err(DeviceState *dev, const char *name, BlockBackend *value, Error **errp);