From 2c5e1065c5120667786b2e50c59c87d0c56deb5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Fri, 13 Jan 2017 08:44:42 +0100 Subject: [PATCH] cortexm_common: Fix unused parameter warnings in mpu_configure --- cpu/cortexm_common/mpu.c | 3 +++ 1 file changed, 3 insertions(+) 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 }