qcacmn: Fix frequency offset signedness in channel marking logic

Change frequency offset to signed, as offset is negative if
radar found in lower frequency compared to center frequency.

Change-Id: Ic33411e5638684c4aacbb424eddc19827ef5e60e
CRs-Fixed: 2017481
This commit is contained in:
Arif Hussain
2017-04-19 21:53:19 -07:00
committed by Sandeep Puligilla
parent 7e189c3436
commit 63acfd2b2e

View File

@@ -76,8 +76,8 @@
*/
struct freqs_offsets {
uint32_t chan_num[DFS_NUM_FREQ_OFFSET];
int32_t freq[DFS_NUM_FREQ_OFFSET];
uint32_t offset[DFS_NUM_FREQ_OFFSET];
uint32_t freq[DFS_NUM_FREQ_OFFSET];
int32_t offset[DFS_NUM_FREQ_OFFSET];
};
/**