staging: rtl8723bs: Change type to bool
authorAastha Gupta <aastha.gupta4104@gmail.com>
Sun, 8 Oct 2017 04:54:53 +0000 (10:24 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Oct 2017 14:07:49 +0000 (16:07 +0200)
res and Match have only either 'true' or 'false' values.
So making them of type bool for better readability of code.

Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_sta_mgt.c

index c6ebb9d8cb3c51e5ed0850640f276378bfc0f482..03dd6848daa11685d635d4b3c2157b4b488f0bd3 100644 (file)
@@ -604,10 +604,10 @@ struct sta_info *rtw_get_bcmc_stainfo(struct adapter *padapter)
 
 u8 rtw_access_ctrl(struct adapter *padapter, u8 *mac_addr)
 {
-       u8 res = true;
+       bool res = true;
        struct list_head        *plist, *phead;
        struct rtw_wlan_acl_node *paclnode;
-       u8 match = false;
+       bool match = false;
        struct sta_priv *pstapriv = &padapter->stapriv;
        struct wlan_acl_pool *pacl_list = &pstapriv->acl_list;
        struct __queue  *pacl_node_q = &pacl_list->acl_node_q;
@@ -630,10 +630,10 @@ u8 rtw_access_ctrl(struct adapter *padapter, u8 *mac_addr)
 
 
        if (pacl_list->mode == 1) /* accept unless in deny list */
-               res = (match == true) ?  false:true;
+               res = !match;
 
        else if (pacl_list->mode == 2)/* deny unless in accept list */
-               res = (match == true) ?  true:false;
+               res = match;
        else
                 res = true;