Staging: vt6655: Remove explicit NULL comparison using Coccinelle

Remove the explicit NULL comparison and rewrite in a compact form.

Signed-off-by: shyam saini <mayhs11saini@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
shyam saini 2016-09-29 04:22:20 +05:30 committed by Greg Kroah-Hartman
parent 7b170bacbb
commit 4d932504b5

View file

@ -504,7 +504,7 @@ s_uFillDataHead(
) )
{ {
if (pTxDataHead == NULL) if (!pTxDataHead)
return 0; return 0;
@ -648,7 +648,7 @@ s_vFillRTSHead(
{ {
unsigned int uRTSFrameLen = 20; unsigned int uRTSFrameLen = 20;
if (pvRTS == NULL) if (!pvRTS)
return; return;
if (bDisCRC) { if (bDisCRC) {
@ -843,7 +843,7 @@ s_vFillCTSHead(
{ {
unsigned int uCTSFrameLen = 14; unsigned int uCTSFrameLen = 14;
if (pvCTS == NULL) if (!pvCTS)
return; return;
if (bDisCRC) { if (bDisCRC) {
@ -1009,7 +1009,7 @@ s_vGenerateTxParameter(
/* Fill RTS */ /* Fill RTS */
s_vFillRTSHead(pDevice, byPktType, pvRTS, cbFrameSize, bNeedACK, bDisCRC, psEthHeader, wCurrentRate, byFBOption); s_vFillRTSHead(pDevice, byPktType, pvRTS, cbFrameSize, bNeedACK, bDisCRC, psEthHeader, wCurrentRate, byFBOption);
} else if (pvRTS == NULL) {/* RTS_needless, non PCF mode */ } else if (!pvRTS) {/* RTS_needless, non PCF mode */
struct vnt_rrv_time_ab *buf = pvRrvTime; struct vnt_rrv_time_ab *buf = pvRrvTime;
buf->rrv_time = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11A, cbFrameSize, wCurrentRate, bNeedACK); buf->rrv_time = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11A, cbFrameSize, wCurrentRate, bNeedACK);