mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
staging: cxt1e1: sbeid.c: Use NULL instead of 0
Pointers should be assigned 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:
parent
ae91992290
commit
0c5d465b4c
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
|||
char *
|
||||
sbeid_get_bdname (ci_t *ci)
|
||||
{
|
||||
char *np = 0;
|
||||
char *np = NULL;
|
||||
|
||||
switch (ci->brd_id)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue