On Thu, 2011-12-15 at 09:02 +0100, Helmut Schaa wrote: > Changes in v2: Make ieee80211_tx_skb an inline function. > +++ b/net/mac80211/tx.c > @@ -2719,3 +2718,10 @@ void ieee80211_tx_skb(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb) > ieee80211_xmit(sdata, skb); > local_bh_enable(); > } > + > +void inline ieee80211_tx_skb(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb) > +{ > + /* Send all internal mgmt frames on VO. Accordingly set TID to 7. */ > + ieee80211_tx_skb_tid(sdata, skb, 7); > +} Err, well, you should define inlines in a header file ... This inline statement probably made no difference at all, except for potentially causing a prototype mismatch compiler warning :) johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html