Staging:rtl8192e Fix Comparison to true is error prone
This patch removes the comaprison to bool value in the code Signed-off-by: Janani Sankara Babu <jananis37@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6b6da6228c
commit
4eff3e9d97
|
@ -365,7 +365,7 @@ int rtllib_rx_ADDBARsp(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
pAdmittedBA = &pTS->TxAdmittedBARecord;
|
||||
|
||||
|
||||
if (pAdmittedBA->bValid == true) {
|
||||
if (pAdmittedBA->bValid) {
|
||||
netdev_dbg(ieee->dev, "%s(): ADDBA response already admitted\n",
|
||||
__func__);
|
||||
return -1;
|
||||
|
@ -485,7 +485,7 @@ void TsInitAddBA(struct rtllib_device *ieee, struct tx_ts_record *pTS,
|
|||
{
|
||||
struct ba_record *pBA = &pTS->TxPendingBARecord;
|
||||
|
||||
if (pBA->bValid == true && bOverwritePending == false)
|
||||
if (pBA->bValid && !bOverwritePending)
|
||||
return;
|
||||
|
||||
DeActivateBAEntry(ieee, pBA);
|
||||
|
|
Loading…
Reference in New Issue