Commit 3e3a1adf authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: HalEEValueCheck(): content of a u8 is always >= 0

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 409b47c4
...@@ -1720,9 +1720,9 @@ static void Hal_EEValueCheck(u8 EEType, void *pInValue, void *pOutValue) ...@@ -1720,9 +1720,9 @@ static void Hal_EEValueCheck(u8 EEType, void *pInValue, void *pOutValue)
u8 *pIn, *pOut; u8 *pIn, *pOut;
pIn = (u8 *) pInValue; pIn = (u8 *) pInValue;
pOut = (u8 *) pOutValue; pOut = (u8 *) pOutValue;
if (*pIn >= 0 && *pIn <= 63) { if (*pIn <= 63)
*pOut = *pIn; *pOut = *pIn;
} else { else {
RT_TRACE(_module_hci_hal_init_c_, _drv_err_, RT_TRACE(_module_hci_hal_init_c_, _drv_err_,
("EETYPE_TX_PWR, value =%d is invalid, set " ("EETYPE_TX_PWR, value =%d is invalid, set "
"to default = 0x%x\n", "to default = 0x%x\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment