Silence warning in MPU driver

The loadAndEnableConfig func is always exposed through the driver API,
even if the underlying CPU is not supported. For cases where the
function is called but its body empty, silence warnings about unused
parameters.

Change-Id: Idf93f9afc9e5c053fa3587c350abe7cc6ad5a5fa
Signed-off-by: Jonny Svärd <jonny.svaerd@arm.com>
diff --git a/drivers/mpu/src/mpu.cpp b/drivers/mpu/src/mpu.cpp
index 7d767ac..9b21ee8 100644
--- a/drivers/mpu/src/mpu.cpp
+++ b/drivers/mpu/src/mpu.cpp
@@ -79,6 +79,9 @@
 
     // Enable MPU with default priv access to all other regions
     ARM_MPU_Enable((1 << MPU_CTRL_PRIVDEFENA_Pos) & MPU_CTRL_PRIVDEFENA_Msk);
+#else
+    (void)table;
+    (void)cnt;
 #endif
 }