Staging: rtl8192e: Fix unnecessary parentheses style warning
This fixes the following checkpatch.pl warning: WARNING: Unnecessary parentheses - maybe == should be = ? Signed-off-by: Mahati Chamarthy <mahati.chamarthy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4af409f6c3
commit
52e93b8ab4
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ int rtllib_rx_ADDBARsp(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||||
pAdmittedBA = &pTS->TxAdmittedBARecord;
|
pAdmittedBA = &pTS->TxAdmittedBARecord;
|
||||||
|
|
||||||
|
|
||||||
if ((pAdmittedBA->bValid == true)) {
|
if (pAdmittedBA->bValid == true) {
|
||||||
RTLLIB_DEBUG(RTLLIB_DL_BA, "OnADDBARsp(): Recv ADDBA Rsp."
|
RTLLIB_DEBUG(RTLLIB_DL_BA, "OnADDBARsp(): Recv ADDBA Rsp."
|
||||||
" Drop because already admit it!\n");
|
" Drop because already admit it!\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue