Use bool for is_6ghz variables and functions

Replace the implicit boolean checks that used int variables with use of
a more explicit bool variable type.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
Jouni Malinen 2020-12-11 17:18:09 +02:00 committed by Jouni Malinen
parent 9a411882bd
commit 6ead8b897f
11 changed files with 28 additions and 27 deletions

View file

@ -2245,44 +2245,44 @@ int center_idx_to_bw_6ghz(u8 idx)
}
int is_6ghz_freq(int freq)
bool is_6ghz_freq(int freq)
{
if (freq < 5935 || freq > 7115)
return 0;
return false;
if (freq == 5935)
return 1;
return true;
if (center_idx_to_bw_6ghz((freq - 5950) / 5) < 0)
return 0;
return false;
return 1;
return true;
}
int is_6ghz_op_class(u8 op_class)
bool is_6ghz_op_class(u8 op_class)
{
return op_class >= 131 && op_class <= 136;
}
int is_6ghz_psc_frequency(int freq)
bool is_6ghz_psc_frequency(int freq)
{
int i;
if (!is_6ghz_freq(freq) || freq == 5935)
return 0;
return false;
if ((((freq - 5950) / 5) & 0x3) != 0x1)
return 0;
return false;
i = (freq - 5950 + 55) % 80;
if (i == 0)
i = (freq - 5950 + 55) / 80;
if (i >= 1 && i <= 15)
return 1;
return true;
return 0;
return false;
}