Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3093664 authored by Kalle Valo's avatar Kalle Valo Committed by John W. Linville
Browse files

mac80211: make wake/stop_queue_by_reason() functions static



Fixes sparse warnings:

net/mac80211/util.c:355:6: warning: symbol
  'ieee80211_wake_queue_by_reason' was not declared. Should it be static?
net/mac80211/util.c:385:6: warning: symbol
  'ieee80211_stop_queue_by_reason' was not declared. Should it be static?

Thanks to Johannes Berg for reporting this.

Signed-off-by: default avatarKalle Valo <kalle.valo@iki.fi>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c557289c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -352,7 +352,7 @@ static void __ieee80211_wake_queue(struct ieee80211_hw *hw, int queue,
	}
}

void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue,
static void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue,
					   enum queue_stop_reason reason)
{
	struct ieee80211_local *local = hw_to_local(hw);
@@ -382,7 +382,7 @@ static void __ieee80211_stop_queue(struct ieee80211_hw *hw, int queue,
	netif_stop_subqueue(local->mdev, queue);
}

void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue,
static void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue,
					   enum queue_stop_reason reason)
{
	struct ieee80211_local *local = hw_to_local(hw);