diff options
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_main.c')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_main.c | 45 | 
1 files changed, 18 insertions, 27 deletions
diff --git a/drivers/net/wireless/hostap/hostap_main.c b/drivers/net/wireless/hostap/hostap_main.c index 756ab56c1f40..02a312ca8607 100644 --- a/drivers/net/wireless/hostap/hostap_main.c +++ b/drivers/net/wireless/hostap/hostap_main.c @@ -27,7 +27,7 @@  #include <net/net_namespace.h>  #include <net/iw_handler.h>  #include <net/ieee80211.h> -#include <net/ieee80211_crypt.h> +#include <net/lib80211.h>  #include <asm/uaccess.h>  #include "hostap_wlan.h" @@ -343,10 +343,11 @@ int hostap_set_encryption(local_info_t *local)  	char keybuf[WEP_KEY_LEN + 1];  	enum { NONE, WEP, OTHER } encrypt_type; -	idx = local->tx_keyidx; -	if (local->crypt[idx] == NULL || local->crypt[idx]->ops == NULL) +	idx = local->crypt_info.tx_keyidx; +	if (local->crypt_info.crypt[idx] == NULL || +	    local->crypt_info.crypt[idx]->ops == NULL)  		encrypt_type = NONE; -	else if (strcmp(local->crypt[idx]->ops->name, "WEP") == 0) +	else if (strcmp(local->crypt_info.crypt[idx]->ops->name, "WEP") == 0)  		encrypt_type = WEP;  	else  		encrypt_type = OTHER; @@ -394,17 +395,17 @@ int hostap_set_encryption(local_info_t *local)  	/* 104-bit support seems to require that all the keys are set to the  	 * same keylen */  	keylen = 6; /* first 5 octets */ -	len = local->crypt[idx]->ops->get_key(keybuf, sizeof(keybuf), -					      NULL, local->crypt[idx]->priv); +	len = local->crypt_info.crypt[idx]->ops->get_key(keybuf, sizeof(keybuf), NULL, +							   local->crypt_info.crypt[idx]->priv);  	if (idx >= 0 && idx < WEP_KEYS && len > 5)  		keylen = WEP_KEY_LEN + 1; /* first 13 octets */  	for (i = 0; i < WEP_KEYS; i++) {  		memset(keybuf, 0, sizeof(keybuf)); -		if (local->crypt[i]) { -			(void) local->crypt[i]->ops->get_key( +		if (local->crypt_info.crypt[i]) { +			(void) local->crypt_info.crypt[i]->ops->get_key(  				keybuf, sizeof(keybuf), -				NULL, local->crypt[i]->priv); +				NULL, local->crypt_info.crypt[i]->priv);  		}  		if (local->func->set_rid(local->dev,  					 HFA384X_RID_CNFDEFAULTKEY0 + i, @@ -530,10 +531,6 @@ int hostap_set_auth_algs(local_info_t *local)  void hostap_dump_rx_header(const char *name, const struct hfa384x_rx_frame *rx)  {  	u16 status, fc; -	DECLARE_MAC_BUF(mac); -	DECLARE_MAC_BUF(mac2); -	DECLARE_MAC_BUF(mac3); -	DECLARE_MAC_BUF(mac4);  	status = __le16_to_cpu(rx->status); @@ -552,12 +549,11 @@ void hostap_dump_rx_header(const char *name, const struct hfa384x_rx_frame *rx)  	       fc & IEEE80211_FCTL_TODS ? " [ToDS]" : "",  	       fc & IEEE80211_FCTL_FROMDS ? " [FromDS]" : ""); -	printk(KERN_DEBUG "   A1=%s A2=%s A3=%s A4=%s\n", -	       print_mac(mac, rx->addr1), print_mac(mac2, rx->addr2), -	       print_mac(mac3, rx->addr3), print_mac(mac4, rx->addr4)); +	printk(KERN_DEBUG "   A1=%pM A2=%pM A3=%pM A4=%pM\n", +	       rx->addr1, rx->addr2, rx->addr3, rx->addr4); -	printk(KERN_DEBUG "   dst=%s src=%s len=%d\n", -	       print_mac(mac, rx->dst_addr), print_mac(mac2, rx->src_addr), +	printk(KERN_DEBUG "   dst=%pM src=%pM len=%d\n", +	       rx->dst_addr, rx->src_addr,  	       __be16_to_cpu(rx->len));  } @@ -565,10 +561,6 @@ void hostap_dump_rx_header(const char *name, const struct hfa384x_rx_frame *rx)  void hostap_dump_tx_header(const char *name, const struct hfa384x_tx_frame *tx)  {  	u16 fc; -	DECLARE_MAC_BUF(mac); -	DECLARE_MAC_BUF(mac2); -	DECLARE_MAC_BUF(mac3); -	DECLARE_MAC_BUF(mac4);  	printk(KERN_DEBUG "%s: TX status=0x%04x retry_count=%d tx_rate=%d "  	       "tx_control=0x%04x; jiffies=%ld\n", @@ -584,12 +576,11 @@ void hostap_dump_tx_header(const char *name, const struct hfa384x_tx_frame *tx)  	       fc & IEEE80211_FCTL_TODS ? " [ToDS]" : "",  	       fc & IEEE80211_FCTL_FROMDS ? " [FromDS]" : ""); -	printk(KERN_DEBUG "   A1=%s A2=%s A3=%s A4=%s\n", -	       print_mac(mac, tx->addr1), print_mac(mac2, tx->addr2), -	       print_mac(mac3, tx->addr3), print_mac(mac4, tx->addr4)); +	printk(KERN_DEBUG "   A1=%pM A2=%pM A3=%pM A4=%pM\n", +	       tx->addr1, tx->addr2, tx->addr3, tx->addr4); -	printk(KERN_DEBUG "   dst=%s src=%s len=%d\n", -	       print_mac(mac, tx->dst_addr), print_mac(mac2, tx->src_addr), +	printk(KERN_DEBUG "   dst=%pM src=%pM len=%d\n", +	       tx->dst_addr, tx->src_addr,  	       __be16_to_cpu(tx->len));  }  | 
