Rename assert to CHECK.

To avoid confusion with the usual definition of assert in C which will
sometimes be compiled out and the expression not evaluated. CHECK will
always be evaluated and tested.

Change-Id: I6a36359ecdecdada5c12ebf70c67cffec9574f7d
diff --git a/inc/hf/mm.h b/inc/hf/mm.h
index b34fb2c..aebe77d 100644
--- a/inc/hf/mm.h
+++ b/inc/hf/mm.h
@@ -23,8 +23,8 @@
 #include "hf/arch/mm.h"
 
 #include "hf/addr.h"
-#include "hf/assert.h"
 #include "hf/mpool.h"
+#include "hf/static_assert.h"
 
 /* Keep macro alignment */
 /* clang-format off */