mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
hw/cxl/cxl-cdat: Make cxl_doe_cdat_init() return boolean
As error.h suggested, the best practice for callee is to return something to indicate success / failure. With returned boolean, there's no need to dereference @errp to check failure case. Suggested-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Zhao Liu <zhao1.liu@intel.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Message-ID: <20240418100433.1085447-4-zhao1.liu@linux.intel.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
a133d207a8
commit
e0ddabc6d4
4 changed files with 6 additions and 8 deletions
|
@ -189,14 +189,14 @@ static bool ct3_load_cdat(CDATObject *cdat, Error **errp)
|
|||
return true;
|
||||
}
|
||||
|
||||
void cxl_doe_cdat_init(CXLComponentState *cxl_cstate, Error **errp)
|
||||
bool cxl_doe_cdat_init(CXLComponentState *cxl_cstate, Error **errp)
|
||||
{
|
||||
CDATObject *cdat = &cxl_cstate->cdat;
|
||||
|
||||
if (cdat->filename) {
|
||||
ct3_load_cdat(cdat, errp);
|
||||
return ct3_load_cdat(cdat, errp);
|
||||
} else {
|
||||
ct3_build_cdat(cdat, errp);
|
||||
return ct3_build_cdat(cdat, errp);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue