Lines Matching defs:res
106 struct arm_smccc_res res;
108 arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res);
111 ret_payload[0] = lower_32_bits(res.a0);
112 ret_payload[1] = upper_32_bits(res.a0);
113 ret_payload[2] = lower_32_bits(res.a1);
114 ret_payload[3] = upper_32_bits(res.a1);
117 return zynqmp_pm_ret_code((enum pm_ret_status)res.a0);
136 struct arm_smccc_res res;
138 arm_smccc_hvc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res);
141 ret_payload[0] = lower_32_bits(res.a0);
142 ret_payload[1] = upper_32_bits(res.a0);
143 ret_payload[2] = lower_32_bits(res.a1);
144 ret_payload[3] = upper_32_bits(res.a1);
147 return zynqmp_pm_ret_code((enum pm_ret_status)res.a0);