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)
+ if (phtpriv->ht_option)
return;

This breaks the previous behaviour and creates a bug.
It should be like `if (!phtpriv->ht_option)`.

Regards,
Ahmet Sezgin Duran