From 5c8e3c7c93b74306bc6545c529ef0e7bdf3a0661 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Tue, 25 Apr 2023 16:25:12 +0200 Subject: [PATCH] cpu/cc26x0_cc13x0: Drop feature cortexm_mpu At least the CC2650 doesn't have an MPU, I assume this is also true for the rest of the family. The CC2652 does have an MPU according to the datasheet. So I keep the feature there in place. --- cpu/cc26x0_cc13x0/Kconfig | 2 -- cpu/cc26x0_cc13x0/Makefile.features | 2 -- 2 files changed, 4 deletions(-) diff --git a/cpu/cc26x0_cc13x0/Kconfig b/cpu/cc26x0_cc13x0/Kconfig index 3a68ea76ca..94d3b33b60 100644 --- a/cpu/cc26x0_cc13x0/Kconfig +++ b/cpu/cc26x0_cc13x0/Kconfig @@ -10,7 +10,6 @@ config CPU_FAM_CC26X0 select CPU_CORE_CORTEX_M3 select CPU_COMMON_CC26XX_CC13XX select HAS_CPU_CC26X0_CC13X0 - select HAS_CORTEXM_MPU select MODULE_CC26XX_CC13XX if TEST_KCONFIG select MODULE_CC26X0_DRIVERLIB if TEST_KCONFIG @@ -20,7 +19,6 @@ config CPU_FAM_CC13X0 select CPU_CORE_CORTEX_M3 select CPU_COMMON_CC26XX_CC13XX select HAS_CPU_CC26X0_CC13X0 - select HAS_CORTEXM_MPU select MODULE_CC26XX_CC13XX if TEST_KCONFIG diff --git a/cpu/cc26x0_cc13x0/Makefile.features b/cpu/cc26x0_cc13x0/Makefile.features index 20bf4b721c..1d5104d8b7 100644 --- a/cpu/cc26x0_cc13x0/Makefile.features +++ b/cpu/cc26x0_cc13x0/Makefile.features @@ -1,5 +1,3 @@ CPU_CORE = cortex-m3 -FEATURES_PROVIDED += cortexm_mpu - -include $(RIOTCPU)/cc26xx_cc13xx/Makefile.features