From: Sachin Kamat Date: Wed, 9 Oct 2013 10:28:31 +0000 (+0530) Subject: staging: vt6655: Use NULL instead of 0 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b806ad483abbc625de4fd66055c9befee1b78e5e;p=deliverable%2Flinux.git staging: vt6655: Use NULL instead of 0 Use NULL instead of 0 for pointer. Signed-off-by: Sachin Kamat Cc: Forest Bond Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6655/wroute.c b/drivers/staging/vt6655/wroute.c index b61328fbee87..85302c5e2bac 100644 --- a/drivers/staging/vt6655/wroute.c +++ b/drivers/staging/vt6655/wroute.c @@ -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;