staging: rtl8723bs: fix comparison to true issue
authorFabio Aiuto <fabioaiuto83@gmail.com>
Sat, 10 Apr 2021 14:20:36 +0000 (16:20 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 11 Apr 2021 06:45:03 +0000 (08:45 +0200)
fix following post-commit hook checkpatch issue:

CHECK: Using comparison to true is error prone
136: FILE: drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:
2497:
+ if (psta->dot8021xalg != 1 ||
psta->bpairwise_key_installed == true) {

Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/680d86950d760003a694f8880c0a912a9d815a5e.1618064275.git.fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c

index 9c98820..89a21eb 100644 (file)
@@ -2491,7 +2491,7 @@ static int cfg80211_rtw_del_station(struct wiphy *wiphy, struct net_device *ndev
                plist = get_next(plist);
 
                if (!memcmp((u8 *)mac, psta->hwaddr, ETH_ALEN)) {
-                       if (psta->dot8021xalg != 1 || psta->bpairwise_key_installed == true) {
+                       if (psta->dot8021xalg != 1 || psta->bpairwise_key_installed) {
                                list_del_init(&psta->asoc_list);
                                pstapriv->asoc_list_cnt--;