Commit 508258f6 authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman

staging: rtl8188eu: fix comparsions to true

Use if(x) instead of if(x == true).
Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8d42daff
...@@ -113,9 +113,9 @@ u8 judge_network_type(struct adapter *padapter, unsigned char *rate, int ratelen ...@@ -113,9 +113,9 @@ u8 judge_network_type(struct adapter *padapter, unsigned char *rate, int ratelen
if (pmlmeinfo->HT_enable) if (pmlmeinfo->HT_enable)
network_type = WIRELESS_11_24N; network_type = WIRELESS_11_24N;
if ((cckratesonly_included(rate, ratelen)) == true) if (cckratesonly_included(rate, ratelen))
network_type |= WIRELESS_11B; network_type |= WIRELESS_11B;
else if ((cckrates_included(rate, ratelen)) == true) else if (cckrates_included(rate, ratelen))
network_type |= WIRELESS_11BG; network_type |= WIRELESS_11BG;
else else
network_type |= WIRELESS_11G; network_type |= WIRELESS_11G;
...@@ -1426,9 +1426,9 @@ void update_wireless_mode(struct adapter *padapter) ...@@ -1426,9 +1426,9 @@ void update_wireless_mode(struct adapter *padapter)
if (pmlmeinfo->HT_enable) if (pmlmeinfo->HT_enable)
network_type = WIRELESS_11_24N; network_type = WIRELESS_11_24N;
if ((cckratesonly_included(rate, ratelen)) == true) if (cckratesonly_included(rate, ratelen))
network_type |= WIRELESS_11B; network_type |= WIRELESS_11B;
else if ((cckrates_included(rate, ratelen)) == true) else if (cckrates_included(rate, ratelen))
network_type |= WIRELESS_11BG; network_type |= WIRELESS_11BG;
else else
network_type |= WIRELESS_11G; network_type |= WIRELESS_11G;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment