staging: rtl8192u: Fix bitwise vs logical operator in TranslateRxSignalStuff819xUsb()
authorNathan Chancellor <nathan@kernel.org>
Sat, 14 Aug 2021 23:56:26 +0000 (16:56 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Aug 2021 07:09:59 +0000 (09:09 +0200)
commit099ec97ac92911abfb102bb5c68ed270fc12e0dd
treea449ee54b9b5590c080c7b9facb46c4d2a35f97a
parent7c715fbce5d300bb782e2b92afab371bc9b8c697
staging: rtl8192u: Fix bitwise vs logical operator in TranslateRxSignalStuff819xUsb()

clang warns:

drivers/staging/rtl8192u/r8192U_core.c:4268:20: warning: bitwise and of
boolean expressions; did you mean logical and? [-Wbool-operation-and]
        bpacket_toself =  bpacket_match_bssid &
                          ^~~~~~~~~~~~~~~~~~~~~
                                              &&
1 warning generated.

Replace the bitwise AND with a logical one to clear up the warning, as
that is clearly what was intended.

Fixes: 8fc8598e61f6 ("Staging: Added Realtek rtl8192u driver to staging")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Link: https://lore.kernel.org/r/20210814235625.1780033-1-nathan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/r8192U_core.c