mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: rtl8192e: replace comparison to NULL by bool
Fixed Comparison to NULL can be written as '!...' by replacing it with simpler form i.e boolean expression. This makes code more readable alternative. Reported by checkpatch. Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com> Link: https://lore.kernel.org/r/YHDnWpWztxeZospi@kali Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
98a847ae5d
commit
92172da23c
1 changed files with 3 additions and 3 deletions
|
@ -271,12 +271,12 @@ static void MakeTSEntry(struct ts_common_info *pTsCommonInfo, u8 *Addr,
|
|||
{
|
||||
u8 count;
|
||||
|
||||
if (pTsCommonInfo == NULL)
|
||||
if (!pTsCommonInfo)
|
||||
return;
|
||||
|
||||
memcpy(pTsCommonInfo->Addr, Addr, 6);
|
||||
|
||||
if (pTSPEC != NULL)
|
||||
if (pTSPEC)
|
||||
memcpy((u8 *)(&(pTsCommonInfo->TSpec)), (u8 *)pTSPEC,
|
||||
sizeof(union tspec_body));
|
||||
|
||||
|
@ -330,7 +330,7 @@ bool GetTs(struct rtllib_device *ieee, struct ts_common_info **ppTS,
|
|||
}
|
||||
|
||||
*ppTS = SearchAdmitTRStream(ieee, Addr, UP, TxRxSelect);
|
||||
if (*ppTS != NULL)
|
||||
if (ppTS)
|
||||
return true;
|
||||
|
||||
if (!bAddNewTs) {
|
||||
|
|
Loading…
Reference in a new issue