mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 12:25:31 +00:00
Staging: rtl8192e: Use !x instead of x == NULL
Use !x instead of x == NULL. This patch was found by checkpatch. Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
56487aed95
commit
6869a11bff
@ -138,7 +138,7 @@ struct net_device *alloc_rtllib(int sizeof_priv)
|
||||
rtllib_softmac_init(ieee);
|
||||
|
||||
ieee->pHTInfo = kzalloc(sizeof(struct rt_hi_throughput), GFP_KERNEL);
|
||||
if (ieee->pHTInfo == NULL)
|
||||
if (!ieee->pHTInfo)
|
||||
return NULL;
|
||||
|
||||
HTUpdateDefaultSetting(ieee);
|
||||
|
Loading…
Reference in New Issue
Block a user