Commit b93ad9a0 authored by Laurentiu Tudor's avatar Laurentiu Tudor Committed by Greg Kroah-Hartman
Browse files

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: default avatarLaurentiu Tudor <laurentiu.tudor@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 714cc27d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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");
}

/**