Searched refs:keyix (Results 1 – 7 of 7) sorted by relevance
/linux/drivers/net/wireless/ath/ath9k/ |
H A D | common.c | 127 u8 keyix; in ath9k_cmn_rx_skb_postprocess() local 150 keyix = rx_stats->rs_keyix; in ath9k_cmn_rx_skb_postprocess() 152 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && in ath9k_cmn_rx_skb_postprocess() 157 keyix = skb->data[hdrlen + 3] >> 6; in ath9k_cmn_rx_skb_postprocess() 159 if (test_bit(keyix, common->keymap)) in ath9k_cmn_rx_skb_postprocess()
|
H A D | ar9002_mac.c | 261 ctl1 |= (i->keyix != ATH9K_TXKEYIX_INVALID ? SM(i->keyix, AR_DestIdx) : 0) in ar9002_set_txdesc() 287 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9002_set_txdesc()
|
H A D | ar9003_mac.c | 106 | (i->keyix != ATH9K_TXKEYIX_INVALID ? AR_DestIdxValid : 0) in ar9003_set_txdesc() 112 ctl12 = (i->keyix != ATH9K_TXKEYIX_INVALID ? in ar9003_set_txdesc() 113 SM(i->keyix, AR_DestIdx) : 0) in ar9003_set_txdesc()
|
H A D | htc_drv_txrx.c | 251 mgmt_hdr.keyix = (u8) ATH9K_TXKEYIX_INVALID; in ath9k_htc_tx_mgmt() 253 mgmt_hdr.keyix = tx_info->control.hw_key->hw_key_idx; in ath9k_htc_tx_mgmt() 323 tx_hdr.keyix = (u8) ATH9K_TXKEYIX_INVALID; in ath9k_htc_tx_data() 325 tx_hdr.keyix = tx_info->control.hw_key->hw_key_idx; in ath9k_htc_tx_data()
|
H A D | htc.h | 80 u8 keyix; member 91 u8 keyix; member
|
/linux/drivers/net/wireless/ath/ |
H A D | key.c | 339 static int ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key, in ath_setkey_tkip() argument 362 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip() 368 return ath_hw_set_keycache_entry(common, keyix, hk, addr); in ath_setkey_tkip() 375 if (!ath_hw_set_keycache_entry(common, keyix, hk, NULL)) { in ath_setkey_tkip() 383 return ath_hw_set_keycache_entry(common, keyix + 32, hk, addr); in ath_setkey_tkip()
|
/linux/drivers/net/wireless/ath/ath5k/ |
H A D | base.c | 1261 unsigned int keyix, hlen; in ath5k_rx_decrypted() local 1274 keyix = skb->data[hlen + 3] >> 6; in ath5k_rx_decrypted() 1276 if (test_bit(keyix, common->keymap)) in ath5k_rx_decrypted()
|