Commit 50c16e22 authored by Chaitanya's avatar Chaitanya Committed by Johannes Berg

mac80211: warn only once if ampdu_action isn't assigned

New drivers that might not support ampdu_action yet while in
development cause a lot of warnings, use WARN_ON_ONCE instead.
Signed-off-by: default avatarT Krushna Chaitanya <chaitanyatk@posedge.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 0b7dff4f
...@@ -445,7 +445,7 @@ int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid, ...@@ -445,7 +445,7 @@ int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
trace_api_start_tx_ba_session(pubsta, tid); trace_api_start_tx_ba_session(pubsta, tid);
if (WARN_ON(!local->ops->ampdu_action)) if (WARN_ON_ONCE(!local->ops->ampdu_action))
return -EINVAL; return -EINVAL;
if ((tid >= IEEE80211_NUM_TIDS) || if ((tid >= IEEE80211_NUM_TIDS) ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment