diff options
author | Jiri Kosina <jkosina@suse.cz> | 2015-09-01 09:35:24 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-09-01 09:35:24 -0400 |
commit | 067e2601d3c076abbf45db91261f9065eaa879b2 (patch) | |
tree | 86c8d4b913873dbd3b4ff23562a3a8597984b4df /drivers/net/wireless/ath/dfs_pattern_detector.h | |
parent | 3e097d1271ecdff2f251a54ddfc5eaa1f9821e96 (diff) | |
parent | 931830aa5c251e0803523213428f777a48bde254 (diff) |
Merge branch 'for-4.3/gembird' into for-linus
Diffstat (limited to 'drivers/net/wireless/ath/dfs_pattern_detector.h')
-rw-r--r-- | drivers/net/wireless/ath/dfs_pattern_detector.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/dfs_pattern_detector.h b/drivers/net/wireless/ath/dfs_pattern_detector.h index dde2652b787c..25a43d632f90 100644 --- a/drivers/net/wireless/ath/dfs_pattern_detector.h +++ b/drivers/net/wireless/ath/dfs_pattern_detector.h | |||
@@ -40,12 +40,14 @@ struct ath_dfs_pool_stats { | |||
40 | * @freq: channel frequency in MHz | 40 | * @freq: channel frequency in MHz |
41 | * @width: pulse duration in us | 41 | * @width: pulse duration in us |
42 | * @rssi: rssi of radar event | 42 | * @rssi: rssi of radar event |
43 | * @chirp: chirp detected in pulse | ||
43 | */ | 44 | */ |
44 | struct pulse_event { | 45 | struct pulse_event { |
45 | u64 ts; | 46 | u64 ts; |
46 | u16 freq; | 47 | u16 freq; |
47 | u8 width; | 48 | u8 width; |
48 | u8 rssi; | 49 | u8 rssi; |
50 | bool chirp; | ||
49 | }; | 51 | }; |
50 | 52 | ||
51 | /** | 53 | /** |
@@ -59,6 +61,7 @@ struct pulse_event { | |||
59 | * @ppb: pulses per bursts for this type | 61 | * @ppb: pulses per bursts for this type |
60 | * @ppb_thresh: number of pulses required to trigger detection | 62 | * @ppb_thresh: number of pulses required to trigger detection |
61 | * @max_pri_tolerance: pulse time stamp tolerance on both sides [us] | 63 | * @max_pri_tolerance: pulse time stamp tolerance on both sides [us] |
64 | * @chirp: chirp required for the radar pattern | ||
62 | */ | 65 | */ |
63 | struct radar_detector_specs { | 66 | struct radar_detector_specs { |
64 | u8 type_id; | 67 | u8 type_id; |
@@ -70,6 +73,7 @@ struct radar_detector_specs { | |||
70 | u8 ppb; | 73 | u8 ppb; |
71 | u8 ppb_thresh; | 74 | u8 ppb_thresh; |
72 | u8 max_pri_tolerance; | 75 | u8 max_pri_tolerance; |
76 | bool chirp; | ||
73 | }; | 77 | }; |
74 | 78 | ||
75 | /** | 79 | /** |