diff options
Diffstat (limited to 'tests/test_mpu.c')
-rw-r--r-- | tests/test_mpu.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/test_mpu.c b/tests/test_mpu.c index 551e079..9ffaa5d 100644 --- a/tests/test_mpu.c +++ b/tests/test_mpu.c @@ -1,12 +1,11 @@ -#include "test_harness.c" - #include "arch/arm/cortex-m4/mpu.h" #include "kern/mpu/mpu_manager.h" +#include "test_harness.c" TEST(mpu, smell) { - memory_region_opts_t memopts = { 0 }; - memopts.region = (void*) 0; + memory_region_opts_t memopts = {0}; + memopts.region = (void*)0; memopts.bufferable = 0; memopts.cacheable = 1; memopts.sharable = 1; |