diff options
author | Rami Rosen <ramirose@gmail.com> | 2009-01-06 09:50:33 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 21:59:50 +0100 |
commit | def1343971b2abd158ece1a71dd1c7a20e4c2fcb (patch) | |
tree | 793d2a3ab817bdc750198eaa03919c7e0c62b48e /net/mac80211 | |
parent | mac80211: Add 802.11h CSA support (diff) | |
download | linux-def1343971b2abd158ece1a71dd1c7a20e4c2fcb.tar.xz linux-def1343971b2abd158ece1a71dd1c7a20e4c2fcb.zip |
mac80211: remove an unnecessary assignment to info in __ieee80211_tx().
This patch removes an unnecessary assignment to info
in __ieee80211_tx() , tx.c.
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/tx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 0bf2272200ad..96eca341160b 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -1053,7 +1053,6 @@ static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb, if (skb) { if (netif_subqueue_stopped(local->mdev, skb)) return IEEE80211_TX_AGAIN; - info = IEEE80211_SKB_CB(skb); ret = local->ops->tx(local_to_hw(local), skb); if (ret) |