Staging: rtl8188eu: hal: Remove explicit NULL comparison
Remove explicit NULL comparison and write it in its simpler form. Replacement done with coccinelle: @replace_rule@ expression e; @@ -e == NULL + !e Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
11d5c7894b
commit
5228fb63a1
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ int rtl8188eu_init_recv_priv(struct adapter *padapter)
|
|||
|
||||
precvpriv->pallocated_recv_buf =
|
||||
kcalloc(NR_RECVBUFF, sizeof(struct recv_buf), GFP_KERNEL);
|
||||
if (precvpriv->pallocated_recv_buf == NULL) {
|
||||
if (!precvpriv->pallocated_recv_buf) {
|
||||
res = _FAIL;
|
||||
RT_TRACE(_module_rtl871x_recv_c_, _drv_err_,
|
||||
("alloc recv_buf fail!\n"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue