diff options
Diffstat (limited to 'tools/lib/traceevent/plugin_mac80211.c')
-rw-r--r-- | tools/lib/traceevent/plugin_mac80211.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/lib/traceevent/plugin_mac80211.c b/tools/lib/traceevent/plugin_mac80211.c index 558a3b91c046..7e15a0f1c2fd 100644 --- a/tools/lib/traceevent/plugin_mac80211.c +++ b/tools/lib/traceevent/plugin_mac80211.c | |||
@@ -93,3 +93,10 @@ int PEVENT_PLUGIN_LOADER(struct pevent *pevent) | |||
93 | drv_bss_info_changed, NULL); | 93 | drv_bss_info_changed, NULL); |
94 | return 0; | 94 | return 0; |
95 | } | 95 | } |
96 | |||
97 | void PEVENT_PLUGIN_UNLOADER(struct pevent *pevent) | ||
98 | { | ||
99 | pevent_unregister_event_handler(pevent, -1, "mac80211", | ||
100 | "drv_bss_info_changed", | ||
101 | drv_bss_info_changed, NULL); | ||
102 | } | ||