[PATCH 02/11] staging: cxt1e1: sbecom_inline_linux.h: Return NULL instead of 0

Sachin Kamat sachin.kamat at linaro.org
Fri Sep 27 04:06:29 UTC 2013


Functions returning pointer should return NULL instead of 0.

Signed-off-by: Sachin Kamat <sachin.kamat at linaro.org>
---
 drivers/staging/cxt1e1/sbecom_inline_linux.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/cxt1e1/sbecom_inline_linux.h b/drivers/staging/cxt1e1/sbecom_inline_linux.h
index 3c6d1c0..ba3ff3e 100644
--- a/drivers/staging/cxt1e1/sbecom_inline_linux.h
+++ b/drivers/staging/cxt1e1/sbecom_inline_linux.h
@@ -73,7 +73,7 @@ OS_mem_token_alloc (size_t size)
     if (!skb)
     {
         //pr_warning("no mem in OS_mem_token_alloc !\n");
-        return 0;
+        return NULL;
     }
     return skb;
 }
@@ -103,7 +103,7 @@ OS_mem_token_data (void *token)
 static inline void *
 OS_mem_token_next (void *token)
 {
-    return 0;
+    return NULL;
 }
 
 
-- 
1.7.9.5



More information about the devel mailing list