armv7-r:MPU fix CONFIG naming to include ARM

This commit is contained in:
David Sidrane
2024-05-24 08:13:38 -07:00
committed by Xiang Xiao
parent 602e69a810
commit e0396327a2
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -185,7 +185,7 @@ static inline uint32_t mpu_subregion_ls(size_t offset, uint8_t l2size)
*
****************************************************************************/
#if defined(CONFIG_MPU_RESET) || defined(CONFIG_ARM_MPU_EARLY_RESET)
#if defined(CONFIG_ARM_MPU_RESET) || defined(CONFIG_ARM_MPU_EARLY_RESET)
static void mpu_reset_internal()
{
int region;
@@ -336,7 +336,7 @@ uint32_t mpu_subregion(uintptr_t base, size_t size, uint8_t l2size)
* MPU initialization.
*
****************************************************************************/
#if defined(CONFIG_MPU_RESET)
#if defined(CONFIG_ARM_MPU_RESET)
void mpu_reset()
{
mpu_reset_internal();
+1 -1
View File
@@ -128,7 +128,7 @@ extern "C"
*
****************************************************************************/
#if defined(CONFIG_MPU_RESET)
#if defined(CONFIG_ARM_MPU_RESET)
void mpu_reset(void);
#else
# define mpu_reset() do { } while (0)