x86: make tests of a value against zero should be made explicit

Tests of a value against zero should be made explicit, unless the
operand is effectively Boolean. This is based on MISRA rule 14.4.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
diff --git a/kernel/device.c b/kernel/device.c
index 4b6c6d8..d8456d9 100644
--- a/kernel/device.c
+++ b/kernel/device.c
@@ -112,7 +112,7 @@
 	/* A null string identifies no device.  So does an empty
 	 * string.
 	 */
-	if ((name == NULL) || (*name == 0U)) {
+	if ((name == NULL) || (name[0] == '\0')) {
 		return NULL;
 	}