aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless/trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/wireless/trace.h')
-rw-r--r--net/wireless/trace.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/net/wireless/trace.h b/net/wireless/trace.h
index aabccf13e07b..47b499f8f54d 100644
--- a/net/wireless/trace.h
+++ b/net/wireless/trace.h
@@ -2193,18 +2193,21 @@ TRACE_EVENT(cfg80211_cqm_rssi_notify,
2193); 2193);
2194 2194
2195TRACE_EVENT(cfg80211_reg_can_beacon, 2195TRACE_EVENT(cfg80211_reg_can_beacon,
2196 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef), 2196 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
2197 TP_ARGS(wiphy, chandef), 2197 enum nl80211_iftype iftype),
2198 TP_ARGS(wiphy, chandef, iftype),
2198 TP_STRUCT__entry( 2199 TP_STRUCT__entry(
2199 WIPHY_ENTRY 2200 WIPHY_ENTRY
2200 CHAN_DEF_ENTRY 2201 CHAN_DEF_ENTRY
2202 __field(enum nl80211_iftype, iftype)
2201 ), 2203 ),
2202 TP_fast_assign( 2204 TP_fast_assign(
2203 WIPHY_ASSIGN; 2205 WIPHY_ASSIGN;
2204 CHAN_DEF_ASSIGN(chandef); 2206 CHAN_DEF_ASSIGN(chandef);
2207 __entry->iftype = iftype;
2205 ), 2208 ),
2206 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT, 2209 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", iftype=%d",
2207 WIPHY_PR_ARG, CHAN_DEF_PR_ARG) 2210 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->iftype)
2208); 2211);
2209 2212
2210TRACE_EVENT(cfg80211_chandef_dfs_required, 2213TRACE_EVENT(cfg80211_chandef_dfs_required,