diff --git a/cpu/cortexm_common/mpu.c b/cpu/cortexm_common/mpu.c index 27f103177c..d29effdc41 100644 --- a/cpu/cortexm_common/mpu.c +++ b/cpu/cortexm_common/mpu.c @@ -67,6 +67,9 @@ int mpu_configure(uint_fast8_t region, uintptr_t base, uint_fast32_t attr) { return 0; #else + (void)region; + (void)base; + (void)attr; return -1; #endif }