Re: [PATCH] staging: rtl8723bs: remove comparisons to boolean literals
From: Dan Carpenter
Date: Thu Jun 04 2026 - 04:11:18 EST
On Wed, Jun 03, 2026 at 01:37:53PM -0600, William Elder wrote:
> @@ -847,7 +846,7 @@ static void bwmode_update_check(struct adapter *padapter, struct ndis_80211_var_
> if (!pIE)
> return;
>
> - if (phtpriv->ht_option == false)
> + if (phtpriv->ht_option)
This patch introduces multiple bugs where true/false are reversed.
regards,
dan carpenter