kernel: Make statements evaluate boolean expressions

MISRA-C requires that the if statement has essentially Boolean type.

MISRA-C rule 14.4

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
diff --git a/include/kernel.h b/include/kernel.h
index 2de99c5..5eda316 100644
--- a/include/kernel.h
+++ b/include/kernel.h
@@ -2589,7 +2589,7 @@
 		/* Couldn't insert into the queue. Clear the pending bit
 		 * so the work item can be submitted again
 		 */
-		if (ret) {
+		if (ret != 0) {
 			atomic_clear_bit(work->flags, K_WORK_STATE_PENDING);
 		}
 	}
@@ -4211,7 +4211,7 @@
 /* private - implementation data created as needed, per-type */
 struct _poller {
 	struct k_thread *thread;
-	volatile int is_polling;
+	volatile bool is_polling;
 };
 
 /* private - types bit positions */