Lines Matching refs:body

614 	struct wcn36xx_hal_mac_start_req_msg msg_body, *body;  in wcn36xx_smd_start()  local
629 body = (struct wcn36xx_hal_mac_start_req_msg *)wcn->hal_buf; in wcn36xx_smd_start()
630 len = body->header.len; in wcn36xx_smd_start()
646 body->header.len = len; in wcn36xx_smd_start()
647 body->params.len = len - sizeof(*body); in wcn36xx_smd_start()
652 ret = wcn36xx_smd_send_and_wait(wcn, body->header.len); in wcn36xx_smd_start()
2882 struct wcn36xx_hal_update_cfg_req_msg msg_body, *body; in wcn36xx_smd_update_cfg() local
2891 body = (struct wcn36xx_hal_update_cfg_req_msg *) wcn->hal_buf; in wcn36xx_smd_update_cfg()
2895 body->header.len = len; in wcn36xx_smd_update_cfg()
2896 body->len = len - sizeof(*body); in wcn36xx_smd_update_cfg()
2898 ret = wcn36xx_smd_send_and_wait(wcn, body->header.len); in wcn36xx_smd_update_cfg()
3256 struct wcn36xx_hal_add_bcn_filter_req_msg msg_body, *body; in wcn36xx_smd_add_beacon_filter() local
3270 body = (struct wcn36xx_hal_add_bcn_filter_req_msg *)wcn->hal_buf; in wcn36xx_smd_add_beacon_filter()
3271 body->capability_info = vif->bss_conf.assoc_capability; in wcn36xx_smd_add_beacon_filter()
3272 body->capability_mask = WCN36XX_FILTER_CAPABILITY_MASK; in wcn36xx_smd_add_beacon_filter()
3273 body->beacon_interval = vif->bss_conf.beacon_int; in wcn36xx_smd_add_beacon_filter()
3274 body->ie_num = ARRAY_SIZE(bcn_filter_ies); in wcn36xx_smd_add_beacon_filter()
3275 body->bss_index = vif_priv->bss_index; in wcn36xx_smd_add_beacon_filter()
3277 payload = ((u8 *)body) + body->header.len; in wcn36xx_smd_add_beacon_filter()
3281 body->header.len += payload_size; in wcn36xx_smd_add_beacon_filter()
3283 ret = wcn36xx_smd_send_and_wait(wcn, body->header.len); in wcn36xx_smd_add_beacon_filter()