• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/wl12xx/

Lines Matching refs:acx

18 	wl1251_debug(DEBUG_ACX, "acx frame rates");
49 wl1251_debug(DEBUG_ACX, "acx dot11_station_id");
74 wl1251_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
104 wl1251_debug(DEBUG_ACX, "acx wake up conditions");
132 wl1251_debug(DEBUG_ACX, "acx sleep auth");
156 wl1251_debug(DEBUG_ACX, "acx fw rev");
187 struct acx_current_tx_power *acx;
190 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
195 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
196 if (!acx) {
201 acx->current_tx_power = power * 10;
203 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
210 kfree(acx);
219 wl1251_debug(DEBUG_ACX, "acx feature cfg");
248 wl1251_debug(DEBUG_ACX, "acx mem map");
263 wl1251_debug(DEBUG_ACX, "acx data path params");
295 wl1251_warning("data path parameter acx status failed");
307 struct acx_rx_msdu_lifetime *acx;
310 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
312 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
313 if (!acx) {
318 acx->lifetime = life_time;
320 acx, sizeof(*acx));
327 kfree(acx);
336 wl1251_debug(DEBUG_ACX, "acx rx config");
364 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
389 wl1251_debug(DEBUG_ACX, "acx slot");
413 struct acx_dot11_grp_addr_tbl *acx;
416 wl1251_debug(DEBUG_ACX, "acx group address tbl");
418 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
419 if (!acx) {
425 acx->enabled = 0;
426 acx->num_groups = 0;
427 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
430 acx, sizeof(*acx));
437 kfree(acx);
452 wl1251_debug(DEBUG_ACX, "acx service period timeout");
475 wl1251_debug(DEBUG_ACX, "acx rts threshold");
501 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
530 wl1251_debug(DEBUG_ACX, "acx beacon filter table");
557 struct acx_conn_monit_params *acx;
560 wl1251_debug(DEBUG_ACX, "acx connection monitor parameters");
562 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
563 if (!acx) {
568 acx->synch_fail_thold = SYNCH_FAIL_DEFAULT_THRESHOLD;
569 acx->bss_lose_timeout = NO_BEACON_DEFAULT_TIMEOUT;
572 acx, sizeof(*acx));
580 kfree(acx);
589 wl1251_debug(DEBUG_ACX, "acx sg enable");
615 wl1251_debug(DEBUG_ACX, "acx sg cfg");
669 wl1251_debug(DEBUG_ACX, "acx cca threshold");
697 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
726 wl1251_debug(DEBUG_ACX, "acx aid");
752 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
779 struct acx_preamble *acx;
784 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
785 if (!acx) {
790 acx->preamble = preamble;
792 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
799 kfree(acx);
806 struct acx_ctsprotect *acx;
811 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
812 if (!acx) {
817 acx->ctsprotect = ctsprotect;
819 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
826 kfree(acx);
860 wl1251_debug(DEBUG_ACX, "acx statistics");
865 wl1251_warning("acx statistics failed: %d", ret);
874 struct acx_rate_policy *acx;
877 wl1251_debug(DEBUG_ACX, "acx rate policies");
879 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
881 if (!acx) {
887 acx->rate_class_cnt = 1;
888 acx->rate_class[0].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
889 acx->rate_class[0].short_retry_limit = ACX_RATE_RETRY_LIMIT;
890 acx->rate_class[0].long_retry_limit = ACX_RATE_RETRY_LIMIT;
891 acx->rate_class[0].aflags = 0;
893 ret = wl1251_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
900 kfree(acx);
909 wl1251_debug(DEBUG_ACX, "acx mem cfg");
953 struct wl1251_acx_wr_tbtt_and_dtim *acx;
956 wl1251_debug(DEBUG_ACX, "acx tbtt and dtim");
958 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
959 if (!acx) {
964 acx->tbtt = tbtt;
965 acx->dtim = dtim;
968 acx, sizeof(*acx));
975 kfree(acx);
982 struct wl1251_acx_ac_cfg *acx;
985 wl1251_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
988 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
990 if (!acx) {
995 acx->ac = ac;
996 acx->cw_min = cw_min;
997 acx->cw_max = cw_max;
998 acx->aifsn = aifs;
999 acx->txop_limit = txop;
1001 ret = wl1251_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
1003 wl1251_warning("acx ac cfg failed: %d", ret);
1008 kfree(acx);
1017 struct wl1251_acx_tid_cfg *acx;
1020 wl1251_debug(DEBUG_ACX, "acx tid cfg %d type %d tsid %d "
1024 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1026 if (!acx) {
1031 acx->queue = queue;
1032 acx->type = type;
1033 acx->tsid = tsid;
1034 acx->ps_scheme = ps_scheme;
1035 acx->ack_policy = ack_policy;
1037 ret = wl1251_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
1039 wl1251_warning("acx tid cfg failed: %d", ret);
1044 kfree(acx);