Lines Matching refs:resp
59 union bmi_resp resp; in ath10k_bmi_get_target_info() local
61 u32 resplen = sizeof(resp.get_target_info); in ath10k_bmi_get_target_info()
73 ret = ath10k_hif_exchange_bmi_msg(ar, &cmd, cmdlen, &resp, &resplen); in ath10k_bmi_get_target_info()
79 if (resplen < sizeof(resp.get_target_info)) { in ath10k_bmi_get_target_info()
85 target_info->version = __le32_to_cpu(resp.get_target_info.version); in ath10k_bmi_get_target_info()
86 target_info->type = __le32_to_cpu(resp.get_target_info.type); in ath10k_bmi_get_target_info()
95 union bmi_resp resp; in ath10k_bmi_read_memory() local
116 &resp, &rxlen); in ath10k_bmi_read_memory()
123 memcpy(buffer, resp.read_mem.payload, rxlen); in ath10k_bmi_read_memory()
181 union bmi_resp resp; in ath10k_bmi_execute() local
183 u32 resplen = sizeof(resp.execute); in ath10k_bmi_execute()
198 ret = ath10k_hif_exchange_bmi_msg(ar, &cmd, cmdlen, &resp, &resplen); in ath10k_bmi_execute()
204 if (resplen < sizeof(resp.execute)) { in ath10k_bmi_execute()
210 *result = __le32_to_cpu(resp.execute.result); in ath10k_bmi_execute()