mirror of https://gitee.com/openkylin/linux.git
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
|
@ -22,7 +22,7 @@
|
||||||
char *
|
char *
|
||||||
sbeid_get_bdname (ci_t *ci)
|
sbeid_get_bdname (ci_t *ci)
|
||||||
{
|
{
|
||||||
char *np = 0;
|
char *np = NULL;
|
||||||
|
|
||||||
switch (ci->brd_id)
|
switch (ci->brd_id)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue