Skip to content

Commit

Permalink
mac80211: fix-up build breakage in 2.6.33
Browse files Browse the repository at this point in the history
"mac80211: fix skb buffering issue" is based on what will become 2.6.34,
so it includes an incompatible usage of sta_info_get.  This patch will
need to be effectively reverted when merging for 2.6.34.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Jan 6, 2010
1 parent 7a4a77b commit debde9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/mac80211/wme.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ u16 ieee80211_select_queue(struct ieee80211_sub_if_data *sdata,
}

if (!sta && ra && !is_multicast_ether_addr(ra)) {
sta = sta_info_get(sdata, ra);
sta = sta_info_get(local, ra);
if (sta)
sta_flags = get_sta_flags(sta);
}
Expand Down

0 comments on commit debde9e

Please sign in to comment.