]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: vt6655: Use NULL instead of 0
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 9 Oct 2013 10:28:31 +0000 (15:58 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Oct 2013 22:36:31 +0000 (15:36 -0700)
Use NULL instead of 0 for pointer.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Forest Bond <forest@alittletooquiet.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/wroute.c

index b61328fbee87d41b68789e909c85d360e27577a7..85302c5e2bac41ff6e93ecc439dd4efd78eb7bf5 100644 (file)
@@ -179,7 +179,7 @@ bool ROUTEbRelay(PSDevice pDevice, unsigned char *pbySkbData, unsigned int uData
                pHeadTD = pHeadTD->next;
        }
 
-       pLastTD->pTDInfo->skb = 0;
+       pLastTD->pTDInfo->skb = NULL;
        pLastTD->pTDInfo->byFlags = 0;
 
        pDevice->apCurrTD[TYPE_AC0DMA] = pHeadTD;