From: Julien Grall Date: Mon, 18 Feb 2019 09:42:27 +0000 (+0000) Subject: xen/arm: psci: Populate arm_smccc_res on PSCI_FEATURES call X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=83ba64c3ebf0e8d3834e3e5b79acb2ceb2cd9bba;p=people%2Fpauldu%2Fxen.git xen/arm: psci: Populate arm_smccc_res on PSCI_FEATURES call Commit 0bc6a68da5 "xen/arm: Replace call_smc with arm_smccc_smc" mistakenly forgot to populate arm_smccc_res. So a garbage value was used as return value. Coverity-ID: 1476827 Signed-off-by: Julien Grall Reviewed-by: Stefano Stabellini Release-acked-by: Juergen Gross --- diff --git a/xen/arch/arm/psci.c b/xen/arch/arm/psci.c index d23cb8e76e..0c90c2305c 100644 --- a/xen/arch/arm/psci.c +++ b/xen/arch/arm/psci.c @@ -87,7 +87,7 @@ static int __init psci_features(uint32_t psci_func_id) if ( psci_ver < PSCI_VERSION(1, 0) ) return PSCI_NOT_SUPPORTED; - arm_smccc_smc(PSCI_1_0_FN32_PSCI_FEATURES, psci_func_id, NULL); + arm_smccc_smc(PSCI_1_0_FN32_PSCI_FEATURES, psci_func_id, &res); return PSCI_RET(res); }