diff options
author | Rami Rosen <ramirose@gmail.com> | 2009-01-06 03:50:33 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 15:59:50 -0500 |
commit | def1343971b2abd158ece1a71dd1c7a20e4c2fcb (patch) | |
tree | 793d2a3ab817bdc750198eaa03919c7e0c62b48e /net/mac80211 | |
parent | c481ec9705d4a5d566393bc17374cfd82c870715 (diff) |
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, | |||
1053 | if (skb) { | 1053 | if (skb) { |
1054 | if (netif_subqueue_stopped(local->mdev, skb)) | 1054 | if (netif_subqueue_stopped(local->mdev, skb)) |
1055 | return IEEE80211_TX_AGAIN; | 1055 | return IEEE80211_TX_AGAIN; |
1056 | info = IEEE80211_SKB_CB(skb); | ||
1057 | 1056 | ||
1058 | ret = local->ops->tx(local_to_hw(local), skb); | 1057 | ret = local->ops->tx(local_to_hw(local), skb); |
1059 | if (ret) | 1058 | if (ret) |