Skip to content

Commit a844bae

Browse files
Peter OhKalle Valo
authored andcommitted
ath: fix incorrect PPB on FCC radar type 5
The minimum number of pulses per burst on FCC radar type 5 is 1. Use this number for correct radar detection. Signed-off-by: Peter Oh <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
1 parent eae79b4 commit a844bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/wireless/ath/dfs_pattern_detector.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static const struct radar_detector_specs fcc_radar_ref_types[] = {
8686
FCC_PATTERN(1, 0, 5, 150, 230, 1, 23),
8787
FCC_PATTERN(2, 6, 10, 200, 500, 1, 16),
8888
FCC_PATTERN(3, 11, 20, 200, 500, 1, 12),
89-
FCC_PATTERN(4, 50, 100, 1000, 2000, 1, 20),
89+
FCC_PATTERN(4, 50, 100, 1000, 2000, 1, 1),
9090
FCC_PATTERN(5, 0, 1, 333, 333, 1, 9),
9191
};
9292

0 commit comments

Comments
 (0)