fix compile error when disabled the flash data cache corruption for stm32 f1xx

This commit is contained in:
no1wudi
2017-03-23 13:38:26 +08:00
parent e2f3ad5d7c
commit 45f5d30e2e
+2
View File
@@ -127,6 +127,7 @@ static void flash_lock(void)
{
modifyreg32(STM32_FLASH_CR, 0, FLASH_CR_LOCK);
}
#if defined(CONFIG_STM32_FLASH_WORKAROUND_DATA_CACHE_CORRUPTION_ON_RWW)
static void data_cache_disable(void)
{
@@ -144,6 +145,7 @@ static void data_cache_enable(void)
modifyreg32(STM32_FLASH_ACR, 0, FLASH_ACR_DCEN);
}
#endif
/************************************************************************************
* Public Functions
************************************************************************************/