diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-09-29 16:04:30 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-09-30 15:57:13 -0400 |
commit | b0b97a8ad5c4640785f9a1c8e979f1c0fba147e1 (patch) | |
tree | 7cd00e44ca83c0864dc3515a72e5d8d069da32c9 /net/mac80211/ieee80211_i.h | |
parent | 948d887dec1042a7d78ae311908113e26502062f (diff) | |
download | kernel-common-b0b97a8ad5c4640785f9a1c8e979f1c0fba147e1.tar.gz kernel-common-b0b97a8ad5c4640785f9a1c8e979f1c0fba147e1.tar.bz2 kernel-common-b0b97a8ad5c4640785f9a1c8e979f1c0fba147e1.zip |
mac80211: remove return value from add_pending_skbs
Now that we no longer use the return value, we no
longer need to maintain it either, so remove it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 5cadcbbc9a57..674b23ea14d7 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -1303,11 +1303,11 @@ void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue, enum queue_stop_reason reason); void ieee80211_add_pending_skb(struct ieee80211_local *local, struct sk_buff *skb); -int ieee80211_add_pending_skbs(struct ieee80211_local *local, - struct sk_buff_head *skbs); -int ieee80211_add_pending_skbs_fn(struct ieee80211_local *local, - struct sk_buff_head *skbs, - void (*fn)(void *data), void *data); +void ieee80211_add_pending_skbs(struct ieee80211_local *local, + struct sk_buff_head *skbs); +void ieee80211_add_pending_skbs_fn(struct ieee80211_local *local, + struct sk_buff_head *skbs, + void (*fn)(void *data), void *data); void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata, u16 transaction, u16 auth_alg, |