From: Sujith Manoharan Date: Wed, 14 Aug 2013 03:41:22 +0000 (+0530) Subject: ath9k: Remove unused function argument X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ea3ef101d750f78dc1e532bcf759ab9afea295df;p=linux-beck.git ath9k: Remove unused function argument Signed-off-by: Sujith Manoharan Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index ec8928041da0..3b47198239f9 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c @@ -885,7 +885,6 @@ static int ath9k_process_rate(struct ath_common *common, static void ath9k_process_rssi(struct ath_common *common, struct ieee80211_hw *hw, - struct ieee80211_hdr *hdr, struct ath_rx_status *rx_stats) { struct ath_softc *sc = hw->priv; @@ -1150,7 +1149,7 @@ static int ath9k_rx_skb_preprocess(struct ath_softc *sc, goto exit; } - ath9k_process_rssi(common, hw, hdr, rx_stats); + ath9k_process_rssi(common, hw, rx_stats); rx_status->band = hw->conf.chandef.chan->band; rx_status->freq = hw->conf.chandef.chan->center_freq;