Home
last modified time | relevance | path

Searched refs:umac_profile (Results 1 – 6 of 6) sorted by relevance

/drivers/net/wireless/iwmc3200wifi/
Dcfg80211.c345 if ((old_mode == iwm->conf.mode) || !iwm->umac_profile) in iwm_cfg80211_change_iface()
348 iwm->umac_profile->mode = cpu_to_le32(iwm->conf.mode); in iwm_cfg80211_change_iface()
437 iwm->umac_profile->ibss.band = chan->band; in iwm_cfg80211_join_ibss()
438 iwm->umac_profile->ibss.channel = iwm->channel; in iwm_cfg80211_join_ibss()
439 iwm->umac_profile->ssid.ssid_len = params->ssid_len; in iwm_cfg80211_join_ibss()
440 memcpy(iwm->umac_profile->ssid.ssid, params->ssid, params->ssid_len); in iwm_cfg80211_join_ibss()
458 u8 *auth_type = &iwm->umac_profile->sec.auth_type; in iwm_set_auth_type()
467 if (iwm->umac_profile->sec.flags & in iwm_set_auth_type()
490 iwm->umac_profile->sec.flags = UMAC_SEC_FLG_LEGACY_PROFILE; in iwm_set_wpa_version()
495 iwm->umac_profile->sec.flags = UMAC_SEC_FLG_WPA_ON_MSK; in iwm_set_wpa_version()
[all …]
Dcommands.c558 if (iwm->umac_profile->sec.ucast_cipher != UMAC_CIPHER_TYPE_WEP_40 && in iwm_check_profile()
559 iwm->umac_profile->sec.ucast_cipher != UMAC_CIPHER_TYPE_WEP_104 && in iwm_check_profile()
560 iwm->umac_profile->sec.ucast_cipher != UMAC_CIPHER_TYPE_TKIP && in iwm_check_profile()
561 iwm->umac_profile->sec.ucast_cipher != UMAC_CIPHER_TYPE_CCMP) { in iwm_check_profile()
563 iwm->umac_profile->sec.ucast_cipher); in iwm_check_profile()
567 if (iwm->umac_profile->sec.mcast_cipher != UMAC_CIPHER_TYPE_WEP_40 && in iwm_check_profile()
568 iwm->umac_profile->sec.mcast_cipher != UMAC_CIPHER_TYPE_WEP_104 && in iwm_check_profile()
569 iwm->umac_profile->sec.mcast_cipher != UMAC_CIPHER_TYPE_TKIP && in iwm_check_profile()
570 iwm->umac_profile->sec.mcast_cipher != UMAC_CIPHER_TYPE_CCMP) { in iwm_check_profile()
572 iwm->umac_profile->sec.mcast_cipher); in iwm_check_profile()
[all …]
Dnetdev.c138 iwm->umac_profile = kmalloc(sizeof(struct iwm_umac_profile), in iwm_if_alloc()
140 if (!iwm->umac_profile) { in iwm_if_alloc()
146 iwm_init_default_profile(iwm, iwm->umac_profile); in iwm_if_alloc()
169 kfree(iwm->umac_profile); in iwm_if_free()
170 iwm->umac_profile = NULL; in iwm_if_free()
Dmain.c182 memcpy(profile, iwm->umac_profile, sizeof(*profile)); in iwm_reset_worker()
206 memcpy(iwm->umac_profile, profile, sizeof(*profile)); in iwm_reset_worker()
228 iwm->umac_profile->sec.auth_type = UMAC_AUTH_TYPE_LEGACY_PSK; in iwm_auth_retry_worker()
726 if (iwm->umac_profile) in __iwm_up()
727 iwm->umac_profile->wireless_mode = in __iwm_up()
824 iwm_init_default_profile(iwm, iwm->umac_profile); in __iwm_down()
Drx.c521 if ((iwm->umac_profile->sec.ucast_cipher == UMAC_CIPHER_TYPE_WEP_40 || in iwm_is_open_wep_profile()
522 iwm->umac_profile->sec.ucast_cipher == UMAC_CIPHER_TYPE_WEP_104) && in iwm_is_open_wep_profile()
523 (iwm->umac_profile->sec.ucast_cipher == in iwm_is_open_wep_profile()
524 iwm->umac_profile->sec.mcast_cipher) && in iwm_is_open_wep_profile()
525 (iwm->umac_profile->sec.auth_type == UMAC_AUTH_TYPE_OPEN)) in iwm_is_open_wep_profile()
Diwm.h239 struct iwm_umac_profile *umac_profile; member