Lines Matching refs:wsm_buf

78 static void wsm_buf_reset(struct wsm_buf *buf);
79 static int wsm_buf_reserve(struct wsm_buf *buf, size_t extra_size);
82 struct wsm_buf *buf,
93 struct wsm_buf *buf) in wsm_generic_confirm()
108 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_configuration()
136 struct wsm_buf *buf) in wsm_configuration_confirm()
166 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_reset()
193 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_read_mib()
216 struct wsm_buf *buf) in wsm_read_mib_confirm()
244 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_write_mib()
269 struct wsm_buf *buf) in wsm_write_mib_confirm()
291 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_scan()
343 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_stop_scan()
353 struct wsm_buf *buf, in wsm_tx_confirm()
375 struct wsm_buf *buf, int link_id) in wsm_multi_tx_confirm()
409 struct wsm_buf *buf) in wsm_join_confirm()
428 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_join()
467 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_bss_params()
492 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_add_key()
514 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_remove_key()
539 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_tx_queue_params()
568 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_edca_params()
615 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_switch_channel()
643 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_pm()
669 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_start()
703 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_beacon_transmit()
725 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_start_find()
738 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_stop_find()
751 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_map_link()
775 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_update_ie()
811 struct wsm_buf *buf) in wsm_startup_indication()
862 struct wsm_buf *buf, in wsm_receive_indication()
915 static int wsm_event_indication(struct cw1200_common *priv, struct wsm_buf *buf) in wsm_event_indication()
951 struct wsm_buf *buf) in wsm_channel_switch_indication()
967 struct wsm_buf *buf) in wsm_set_pm_indication()
978 struct wsm_buf *buf) in wsm_scan_started()
993 struct wsm_buf *buf) in wsm_scan_complete_indication()
1008 struct wsm_buf *buf) in wsm_join_complete_indication()
1022 struct wsm_buf *buf) in wsm_find_complete_indication()
1029 struct wsm_buf *buf) in wsm_ba_timeout_indication()
1051 int link_id, struct wsm_buf *buf) in wsm_suspend_resume_indication()
1075 struct wsm_buf *buf, in wsm_cmd_send()
1243 struct wsm_buf buf; in wsm_handle_exception()
1301 struct wsm_buf wsm_buf; in wsm_handle_rx() local
1307 wsm_buf.begin = (u8 *)&wsm[0]; in wsm_handle_rx()
1308 wsm_buf.data = (u8 *)&wsm[1]; in wsm_handle_rx()
1309 wsm_buf.end = &wsm_buf.begin[__le16_to_cpu(wsm->len)]; in wsm_handle_rx()
1312 wsm_buf.end - wsm_buf.begin); in wsm_handle_rx()
1315 ret = wsm_tx_confirm(priv, &wsm_buf, link_id); in wsm_handle_rx()
1317 ret = wsm_multi_tx_confirm(priv, &wsm_buf, link_id); in wsm_handle_rx()
1346 &wsm_buf); in wsm_handle_rx()
1351 &wsm_buf); in wsm_handle_rx()
1355 ret = wsm_scan_started(priv, wsm_arg, &wsm_buf); in wsm_handle_rx()
1360 &wsm_buf); in wsm_handle_rx()
1364 ret = wsm_join_confirm(priv, wsm_arg, &wsm_buf); in wsm_handle_rx()
1382 ret = wsm_generic_confirm(priv, wsm_arg, &wsm_buf); in wsm_handle_rx()
1413 ret = wsm_startup_indication(priv, &wsm_buf); in wsm_handle_rx()
1417 &wsm_buf, skb_p); in wsm_handle_rx()
1420 ret = wsm_event_indication(priv, &wsm_buf); in wsm_handle_rx()
1423 ret = wsm_scan_complete_indication(priv, &wsm_buf); in wsm_handle_rx()
1426 ret = wsm_ba_timeout_indication(priv, &wsm_buf); in wsm_handle_rx()
1429 ret = wsm_set_pm_indication(priv, &wsm_buf); in wsm_handle_rx()
1432 ret = wsm_channel_switch_indication(priv, &wsm_buf); in wsm_handle_rx()
1435 ret = wsm_find_complete_indication(priv, &wsm_buf); in wsm_handle_rx()
1439 link_id, &wsm_buf); in wsm_handle_rx()
1442 ret = wsm_join_complete_indication(priv, &wsm_buf); in wsm_handle_rx()
1777 void wsm_buf_init(struct wsm_buf *buf) in wsm_buf_init()
1785 void wsm_buf_deinit(struct wsm_buf *buf) in wsm_buf_deinit()
1791 static void wsm_buf_reset(struct wsm_buf *buf) in wsm_buf_reset()
1801 static int wsm_buf_reserve(struct wsm_buf *buf, size_t extra_size) in wsm_buf_reserve()