Lines Matching refs:reply
805 u16 reply_id, void *reply, u8 reply_size, int to_msec) in wmi_call() argument
817 wil->reply_buf = reply; in wmi_call()
875 } __packed reply; in wmi_pcp_start() local
893 WMI_PCP_STARTED_EVENTID, &reply, sizeof(reply), 5000); in wmi_pcp_start()
897 if (reply.evt.status != WMI_FW_STATUS_SUCCESS) in wmi_pcp_start()
929 } __packed reply; in wmi_get_ssid() local
933 &reply, sizeof(reply), 20); in wmi_get_ssid()
937 len = le32_to_cpu(reply.cmd.ssid_len); in wmi_get_ssid()
938 if (len > sizeof(reply.cmd.ssid)) in wmi_get_ssid()
942 memcpy(ssid, reply.cmd.ssid, len); in wmi_get_ssid()
962 } __packed reply; in wmi_get_channel() local
965 WMI_GET_PCP_CHANNEL_EVENTID, &reply, sizeof(reply), 20); in wmi_get_channel()
969 if (reply.cmd.channel > 3) in wmi_get_channel()
972 *channel = reply.cmd.channel + 1; in wmi_get_channel()
1054 } __packed reply; in wmi_rxon() local
1061 &reply, sizeof(reply), 100); in wmi_rxon()
1062 if ((rc == 0) && (reply.evt.status != WMI_FW_STATUS_SUCCESS)) in wmi_rxon()
1145 } __packed reply; in wmi_get_temperature() local
1148 WMI_TEMP_SENSE_DONE_EVENTID, &reply, sizeof(reply), 100); in wmi_get_temperature()
1153 *t_bb = le32_to_cpu(reply.evt.baseband_t1000); in wmi_get_temperature()
1155 *t_rf = le32_to_cpu(reply.evt.rf_t1000); in wmi_get_temperature()
1234 } __packed reply; in wmi_addba_rx_resp() local
1241 WMI_ADDBA_RESP_SENT_EVENTID, &reply, sizeof(reply), 100); in wmi_addba_rx_resp()
1245 if (reply.evt.status) { in wmi_addba_rx_resp()
1247 le16_to_cpu(reply.evt.status)); in wmi_addba_rx_resp()