Re: [PATCH] staging: rtl8723bs: remove comparisons to boolean literals
From: Ahmet Sezgin Duran
Date: Wed Jun 03 2026 - 15:56:45 EST
On 6/3/26 10:37 PM, William Elder wrote:
- if (phtpriv->ht_option == false)This breaks the previous behaviour and creates a bug.
+ if (phtpriv->ht_option)
return;
It should be like `if (!phtpriv->ht_option)`.
Regards,
Ahmet Sezgin Duran