diff options
Diffstat (limited to 'drivers/net/wireless/iwlegacy/4965.c')
-rw-r--r-- | drivers/net/wireless/iwlegacy/4965.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwlegacy/4965.c b/drivers/net/wireless/iwlegacy/4965.c index f48cb89deab7..726fc80d9cee 100644 --- a/drivers/net/wireless/iwlegacy/4965.c +++ b/drivers/net/wireless/iwlegacy/4965.c | |||
@@ -2017,9 +2017,9 @@ static int il4965_get_ra_sta_id(struct il_priv *il, struct ieee80211_hdr *hdr) | |||
2017 | } | 2017 | } |
2018 | 2018 | ||
2019 | /** | 2019 | /** |
2020 | * il4965_rx_reply_tx - Handle standard (non-aggregation) Tx response | 2020 | * il4965_hdl_tx - Handle standard (non-aggregation) Tx response |
2021 | */ | 2021 | */ |
2022 | static void il4965_rx_reply_tx(struct il_priv *il, | 2022 | static void il4965_hdl_tx(struct il_priv *il, |
2023 | struct il_rx_buf *rxb) | 2023 | struct il_rx_buf *rxb) |
2024 | { | 2024 | { |
2025 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 2025 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
@@ -2145,9 +2145,9 @@ static void il4965_rx_beacon_notif(struct il_priv *il, | |||
2145 | static void il4965_handler_setup(struct il_priv *il) | 2145 | static void il4965_handler_setup(struct il_priv *il) |
2146 | { | 2146 | { |
2147 | /* Legacy Rx frames */ | 2147 | /* Legacy Rx frames */ |
2148 | il->handlers[N_RX] = il4965_rx_reply_rx; | 2148 | il->handlers[N_RX] = il4965_hdl_rx; |
2149 | /* Tx response */ | 2149 | /* Tx response */ |
2150 | il->handlers[C_TX] = il4965_rx_reply_tx; | 2150 | il->handlers[C_TX] = il4965_hdl_tx; |
2151 | il->handlers[N_BEACON] = il4965_rx_beacon_notif; | 2151 | il->handlers[N_BEACON] = il4965_rx_beacon_notif; |
2152 | } | 2152 | } |
2153 | 2153 | ||