[PATCH 241/641] Staging: hv: fix sparse NULL pointer warnings

Greg Kroah-Hartman gregkh at suse.de
Tue Sep 15 19:07:52 UTC 2009


This fixes up all of the sparse warnings where NULL should be used
instead of 0.

Cc: Hank Janssen <hjanssen at microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh at suse.de>
---
 drivers/staging/hv/Hv.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/hv/Hv.c b/drivers/staging/hv/Hv.c
index ef328d0..36e0d86 100644
--- a/drivers/staging/hv/Hv.c
+++ b/drivers/staging/hv/Hv.c
@@ -231,7 +231,7 @@ HvInit (
 	int ret=0;
     int maxLeaf;
 	HV_X64_MSR_HYPERCALL_CONTENTS hypercallMsr;
-	void* virtAddr=0;
+	void *virtAddr = NULL;
 
 	DPRINT_ENTER(VMBUS);
 
@@ -426,7 +426,7 @@ HvPostMessage(
 	alignedMsg->PayloadSize = payloadSize;
 	memcpy((void*)alignedMsg->Payload, payload, payloadSize);
 
-	status = HvDoHypercall(HvCallPostMessage, alignedMsg, 0) & 0xFFFF;
+	status = HvDoHypercall(HvCallPostMessage, alignedMsg, NULL) & 0xFFFF;
 
 	kfree((void*)addr);
 
@@ -449,7 +449,7 @@ HvSignalEvent(void)
 {
 	HV_STATUS status;
 
-	status = HvDoHypercall(HvCallSignalEvent, gHvContext.SignalEventParam, 0) & 0xFFFF;
+	status = HvDoHypercall(HvCallSignalEvent, gHvContext.SignalEventParam, NULL) & 0xFFFF;
 
 	return status;
 }
-- 
1.6.4.2




More information about the devel mailing list