Skip to content

Commit 971e29b

Browse files
Alexander ZilberkantYossi Levy
authored andcommitted
Remove TARGET prefix from the TARGET_BYPASS_NVSTORE_CHECK and leave it as BYPASS_NVSTORE_CHECK
1 parent 849db51 commit 971e29b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/storage/kvstore/tdbstore/TDBStore.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "mbed_wait_api.h"
2626
#include "MbedCRC.h"
2727
//Bypass the check of NVStore co existance if compiled for TARGET_TFM
28-
#if !(TARGET_BYPASS_NVSTORE_CHECK)
28+
#if !(BYPASS_NVSTORE_CHECK)
2929
#include "SystemStorage.h"
3030
#endif
3131

@@ -994,7 +994,7 @@ int TDBStore::init()
994994
}
995995

996996
//Bypass the check of NVStore co existance if compiled for TARGET_TFM
997-
#if !(TARGET_BYPASS_NVSTORE_CHECK)
997+
#if !(BYPASS_NVSTORE_CHECK)
998998

999999
//Check if we are on internal memory && try to set the internal memory for TDBStore use.
10001000
if (strcmp(_bd->get_type(), "FLASHIAP") == 0 &&

0 commit comments

Comments
 (0)