aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 09a0b268e5cf..b514abcc2b93 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -567,6 +567,7 @@ enum cfg80211_signal_type {
567 * @len_information_elements: total length of the information elements 567 * @len_information_elements: total length of the information elements
568 * @signal: signal strength value 568 * @signal: signal strength value
569 * @signal_type: signal type 569 * @signal_type: signal type
570 * @free_priv: function pointer to free private data
570 * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes 571 * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
571 */ 572 */
572struct cfg80211_bss { 573struct cfg80211_bss {
@@ -582,6 +583,7 @@ struct cfg80211_bss {
582 s32 signal; 583 s32 signal;
583 enum cfg80211_signal_type signal_type; 584 enum cfg80211_signal_type signal_type;
584 585
586 void (*free_priv)(struct cfg80211_bss *bss);
585 u8 priv[0] __attribute__((__aligned__(sizeof(void *)))); 587 u8 priv[0] __attribute__((__aligned__(sizeof(void *))));
586}; 588};
587 589