Remove CONFIG_MM_MULTIHEAP. Non-multiheap operation is no longer supported

This commit is contained in:
Gregory Nutt 2014-08-31 10:54:55 -06:00
parent 05b6217876
commit 10aa9ad087
2 changed files with 3 additions and 3 deletions

View File

@ -1661,7 +1661,7 @@ config STM32_CCMEXCLUDE
config STM32_CCM_PROCFS config STM32_CCM_PROCFS
bool "CCM PROCFS support" bool "CCM PROCFS support"
default n default n
depends on STM32_CCMEXCLUDE && MM_MULTIHEAP && FS_PROCFS depends on STM32_CCMEXCLUDE && FS_PROCFS
---help--- ---help---
Select to build in support for /proc/ccm. Reading from /proc/ccm Select to build in support for /proc/ccm. Reading from /proc/ccm
will provide statistics about CCM memory use similar to what you will provide statistics about CCM memory use similar to what you

View File

@ -66,10 +66,10 @@
#endif #endif
/* In order to use the CCM heap, it had to have been excluded from the main /* In order to use the CCM heap, it had to have been excluded from the main
* heap and support for multiple heaps must have been enabled. * heap.
*/ */
#if !defined(CONFIG_STM32_CCMEXCLUDE) || !defined(CONFIG_MM_MULTIHEAP) #ifndef CONFIG_STM32_CCMEXCLUDE
# undef HAVE_CCM_HEAP # undef HAVE_CCM_HEAP
#endif #endif