diff options
author | Lorenzo Bianconi <lorenzo.bianconi83@gmail.com> | 2014-09-04 17:57:41 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-09-05 07:54:07 -0400 |
commit | a4bcaf5556da649f0160e60fa7b4bb2c29801c12 (patch) | |
tree | 7ccfccbde36c5ef1eaadf28108eb60b30910bfd0 /net/mac80211/trace.h | |
parent | 3057dbfdab1b86a77ed6d512fc857b032f78663b (diff) |
mac80211: extend set_coverage_class signature
Extend mac80211 set_coverage_class API in order to enable ACK timeout
estimation algorithm (dynack) passing coverage class equals to -1
to lower drivers. Synchronize set_coverage_class routine signature with
mac80211 function pointer for p54, ath9k, ath9k_htc and ath5k drivers.
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/trace.h')
-rw-r--r-- | net/mac80211/trace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/trace.h b/net/mac80211/trace.h index 02ac535d1274..38fae7ebe984 100644 --- a/net/mac80211/trace.h +++ b/net/mac80211/trace.h | |||
@@ -672,13 +672,13 @@ DEFINE_EVENT(local_u32_evt, drv_set_rts_threshold, | |||
672 | ); | 672 | ); |
673 | 673 | ||
674 | TRACE_EVENT(drv_set_coverage_class, | 674 | TRACE_EVENT(drv_set_coverage_class, |
675 | TP_PROTO(struct ieee80211_local *local, u8 value), | 675 | TP_PROTO(struct ieee80211_local *local, s16 value), |
676 | 676 | ||
677 | TP_ARGS(local, value), | 677 | TP_ARGS(local, value), |
678 | 678 | ||
679 | TP_STRUCT__entry( | 679 | TP_STRUCT__entry( |
680 | LOCAL_ENTRY | 680 | LOCAL_ENTRY |
681 | __field(u8, value) | 681 | __field(s16, value) |
682 | ), | 682 | ), |
683 | 683 | ||
684 | TP_fast_assign( | 684 | TP_fast_assign( |