staging: fsl-mc: be consistent when checking strcmp() return
Stick to one way of checking the return code of strcmp(): use '!'. This was suggested in a review comment. Signed-off-by: Laurentiu Tudor <laurentiu.tudor@nxp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
714cc27d41
Коммит
b93ad9a067
|
@ -19,9 +19,9 @@
|
|||
|
||||
static bool __must_check fsl_mc_is_allocatable(const char *obj_type)
|
||||
{
|
||||
return strcmp(obj_type, "dpbp") == 0 ||
|
||||
strcmp(obj_type, "dpmcp") == 0 ||
|
||||
strcmp(obj_type, "dpcon") == 0;
|
||||
return strcmp(obj_type, "dpbp") ||
|
||||
strcmp(obj_type, "dpmcp") ||
|
||||
strcmp(obj_type, "dpcon");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче