Lines Matching refs:arg
652 struct wsm_configuration *arg);
662 int wsm_reset(struct cw1200_common *priv, const struct wsm_reset *arg);
737 int wsm_scan(struct cw1200_common *priv, const struct wsm_scan *arg);
884 struct wsm_event *arg);
947 int wsm_join(struct cw1200_common *priv, struct wsm_join *arg);
972 int wsm_set_pm(struct cw1200_common *priv, const struct wsm_set_pm *arg);
999 const struct wsm_set_bss_params *arg);
1062 int wsm_add_key(struct cw1200_common *priv, const struct wsm_add_key *arg);
1072 const struct wsm_remove_key *arg);
1104 const struct wsm_set_tx_queue_params *arg, u8 id);
1148 const struct wsm_edca_params *arg);
1151 const struct wsm_edca_params *arg);
1176 const struct wsm_switch_channel *arg);
1219 int wsm_start(struct cw1200_common *priv, const struct wsm_start *arg);
1230 const struct wsm_beacon_transmit *arg);
1260 const struct wsm_update_ie *arg);
1269 int wsm_map_link(struct cw1200_common *priv, const struct wsm_map_link *arg);
1309 struct wsm_rcpi_rssi_threshold *arg) in wsm_set_rcpi_rssi_threshold() argument
1311 return wsm_write_mib(priv, WSM_MIB_ID_RCPI_RSSI_THRESHOLD, arg, in wsm_set_rcpi_rssi_threshold()
1312 sizeof(*arg)); in wsm_set_rcpi_rssi_threshold()
1341 struct wsm_mib_counters_table *arg) in wsm_get_counters_table() argument
1344 arg, sizeof(*arg)); in wsm_get_counters_table()
1360 const struct wsm_rx_filter *arg) in wsm_set_rx_filter() argument
1363 if (arg->promiscuous) in wsm_set_rx_filter()
1365 if (arg->bssid) in wsm_set_rx_filter()
1367 if (arg->fcs) in wsm_set_rx_filter()
1369 if (arg->probeResponder) in wsm_set_rx_filter()
1411 struct wsm_beacon_filter_control *arg) in wsm_beacon_filter_control() argument
1417 val.enabled = __cpu_to_le32(arg->enabled); in wsm_beacon_filter_control()
1418 val.bcn_count = __cpu_to_le32(arg->bcn_count); in wsm_beacon_filter_control()
1436 const struct wsm_operational_mode *arg) in wsm_set_operational_mode() argument
1438 u8 val = arg->power_mode; in wsm_set_operational_mode()
1439 if (arg->disable_more_flag_usage) in wsm_set_operational_mode()
1441 if (arg->perform_ant_diversity) in wsm_set_operational_mode()
1454 struct wsm_template_frame *arg) in wsm_set_template_frame() argument
1457 u8 *p = skb_push(arg->skb, 4); in wsm_set_template_frame()
1458 p[0] = arg->frame_type; in wsm_set_template_frame()
1459 p[1] = arg->rate; in wsm_set_template_frame()
1460 ((__le16 *)p)[1] = __cpu_to_le16(arg->skb->len - 4); in wsm_set_template_frame()
1461 ret = wsm_write_mib(priv, WSM_MIB_ID_TEMPLATE_FRAME, p, arg->skb->len); in wsm_set_template_frame()
1462 skb_pull(arg->skb, 4); in wsm_set_template_frame()
1474 struct wsm_protected_mgmt_policy *arg) in wsm_set_protected_mgmt_policy() argument
1478 if (arg->protectedMgmtEnable) in wsm_set_protected_mgmt_policy()
1480 if (arg->unprotectedMgmtFramesAllowed) in wsm_set_protected_mgmt_policy()
1482 if (arg->encryptionForAuthFrame) in wsm_set_protected_mgmt_policy()
1517 struct wsm_mib_association_mode *arg) in wsm_set_association_mode() argument
1519 return wsm_write_mib(priv, WSM_MIB_ID_SET_ASSOCIATION_MODE, arg, in wsm_set_association_mode()
1520 sizeof(*arg)); in wsm_set_association_mode()
1548 struct wsm_set_tx_rate_retry_policy *arg) in wsm_set_tx_rate_retry_policy() argument
1550 size_t size = 4 + arg->num * sizeof(struct wsm_tx_rate_retry_policy); in wsm_set_tx_rate_retry_policy()
1551 return wsm_write_mib(priv, WSM_MIB_ID_SET_TX_RATE_RETRY_POLICY, arg, in wsm_set_tx_rate_retry_policy()
1568 struct wsm_ether_type_filter_hdr *arg) in wsm_set_ether_type_filter() argument
1571 arg->num * sizeof(struct wsm_ether_type_filter); in wsm_set_ether_type_filter()
1573 arg, size); in wsm_set_ether_type_filter()
1589 struct wsm_udp_port_filter_hdr *arg) in wsm_set_udp_port_filter() argument
1592 arg->num * sizeof(struct wsm_udp_port_filter); in wsm_set_udp_port_filter()
1594 arg, size); in wsm_set_udp_port_filter()
1671 struct wsm_keep_alive_period arg = { in wsm_keep_alive_period() local
1675 &arg, sizeof(arg)); in wsm_keep_alive_period()
1687 struct wsm_set_bssid_filtering arg = { in wsm_set_bssid_filtering() local
1691 &arg, sizeof(arg)); in wsm_set_bssid_filtering()
1751 __le32 arg = enabled ? __cpu_to_le32(1) : 0; in wsm_use_multi_tx_conf() local
1754 &arg, sizeof(arg)); in wsm_use_multi_tx_conf()
1767 struct wsm_uapsd_info *arg) in wsm_set_uapsd_info() argument
1770 arg, sizeof(*arg)); in wsm_set_uapsd_info()
1781 struct wsm_override_internal_txrate *arg) in wsm_set_override_internal_txrate() argument
1784 arg, sizeof(*arg)); in wsm_set_override_internal_txrate()
1822 void *arg; member