diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2021-10-26 01:55:33 -0600 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2021-10-26 01:55:33 -0600 |
commit | 2c94d5baaec9e65550df942cf976db48bd36d9b5 (patch) | |
tree | 6eb68deb9ab93d53539ef3cab283991140ddf0e6 /tests/test_mpu.c | |
parent | 969c054e5b1aee7fb034667f09240216ea0c6abf (diff) | |
download | stm32l4-2c94d5baaec9e65550df942cf976db48bd36d9b5.tar.gz stm32l4-2c94d5baaec9e65550df942cf976db48bd36d9b5.tar.bz2 stm32l4-2c94d5baaec9e65550df942cf976db48bd36d9b5.zip |
run clang-format.
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; |