mirror of
https://github.com/torvalds/linux.git
synced 2026-02-04 15:28:49 +08:00
staging: cxt1e1: sbecom_inline_linux.h: Return NULL instead of 0
Functions returning pointer should return NULL instead of 0. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
55c19aa072
commit
ae91992290
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user