diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/common.h')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/common.h | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/common.h b/drivers/net/wireless/ath/ath9k/common.h index 050ca4a4850..207d06995b1 100644 --- a/drivers/net/wireless/ath/ath9k/common.h +++ b/drivers/net/wireless/ath/ath9k/common.h @@ -40,9 +40,8 @@  	x = ATH_LPF_RSSI((x), ATH_RSSI_IN((y)), ATH_RSSI_LPF_LEN);  	\  } while (0)  #define ATH_EP_RND(x, mul) 						\ -	((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul)) +	(((x) + ((mul)/2)) / (mul)) -int ath9k_cmn_padpos(__le16 frame_control);  int ath9k_cmn_get_hw_crypto_keytype(struct sk_buff *skb);  void ath9k_cmn_update_ichannel(struct ath9k_channel *ichan,  			       struct ieee80211_channel *chan,  |