Lines Matching defs:status
82 .status = SCMI_SUCCESS,
98 .status = SCMI_SUCCESS,
114 .status = SCMI_SUCCESS,
136 .status = SCMI_SUCCESS,
173 .status = SCMI_SUCCESS,
201 int32_t status = 0;
219 status = plat_scmi_clock_set_rate(msg->agent_id, clock_id, rate);
221 scmi_status_response(msg, status);
227 int32_t status = SCMI_GENERIC_ERROR;
245 status = plat_scmi_clock_set_state(msg->agent_id, clock_id, enable);
247 scmi_status_response(msg, status);
282 .status = SCMI_SUCCESS,
285 int32_t status;
301 status = plat_scmi_clock_rates_array(msg->agent_id, clock_id, NULL,
303 if (status == SCMI_SUCCESS) {
310 status = plat_scmi_clock_rates_array(msg->agent_id, clock_id,
313 if (status == SCMI_SUCCESS) {
319 p2a.status = SCMI_SUCCESS;
325 } else if (status == SCMI_NOT_SUPPORTED) {
329 status = plat_scmi_clock_rates_by_step(msg->agent_id, clock_id,
331 if (status == SCMI_SUCCESS) {
336 p2a.status = SCMI_SUCCESS;
342 /* Fallthrough generic exit sequence below with error status */
345 if (status != SCMI_SUCCESS) {
346 scmi_status_response(msg, status);