CFSTORE issue 3327: fix to build CFSTORE SRAM mode (disabling flash storage).

pull/3329/head
Simon Hughes 2016-11-28 16:09:00 +00:00
parent fc1f439161
commit 46411f7f73
1 changed files with 3 additions and 2 deletions

View File

@ -41,8 +41,6 @@
extern ARM_DRIVER_STORAGE ARM_Driver_Storage_MTD_K64F;
static ARM_DRIVER_STORAGE *cfstore_svm_storage_drv = &ARM_Driver_Storage_MTD_K64F;
#endif /* CFSTORE_CONFIG_BACKEND_FLASH_ENABLED */
/* the storage volume manager instance used to generate virtual mtd descriptors */
StorageVolumeManager volumeManager;
@ -79,3 +77,6 @@ int32_t cfstore_svm_init(struct _ARM_DRIVER_STORAGE *storage_mtd)
}
return ret;
}
#endif /* CFSTORE_CONFIG_BACKEND_FLASH_ENABLED */