Skip to content

Commit 8ba64c4

Browse files
committed
Update include paths
1 parent e27a6e0 commit 8ba64c4

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

drivers/device_key/source/DeviceKey.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#include "mbedtls/cmac.h"
2222
#include "mbedtls/platform.h"
2323
#include "kvstore/KVStore.h"
24-
#include "kvstore/TDBStore.h"
25-
#include "kvstore/KVMap.h"
24+
#include "tdbstore/TDBStore.h"
25+
#include "kvstore_global_api/KVMap.h"
2626
#include "kv_config/kv_config.h"
2727
#include "mbed_wait_api.h"
2828
#include <stdlib.h>

storage/kvstore/kv_config/source/kv_config.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
#include "kv_config.h"
1818
#include "kvstore/KVStore.h"
19-
#include "kvstore/KVMap.h"
19+
#include "kvstore_global_api/KVMap.h"
2020
#include "blockdevice/BlockDevice.h"
2121
#include "filesystem/FileSystem.h"
22-
#include "kvstore/FileSystemStore.h"
22+
#include "filesystemstore/FileSystemStore.h"
2323
#include "blockdevice/SlicingBlockDevice.h"
2424
#include "fat/FATFileSystem.h"
2525
#include "littlefs/LittleFileSystem.h"
26-
#include "kvstore/TDBStore.h"
26+
#include "tdbstore/TDBStore.h"
2727
#include "mbed_error.h"
2828
#include "drivers/FlashIAP.h"
2929
#include "blockdevice/FlashSimBlockDevice.h"

storage/kvstore/tests/TESTS/direct_access_devicekey/tdb/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
#include <string.h>
2525
#include "DeviceKey.h"
2626
#include "kvstore/KVStore.h"
27-
#include "kvstore/KVMap.h"
27+
#include "kvstore_global_api/KVMap.h"
2828
#include "kv_config/kv_config.h"
29-
#include "kvstore/TDBStore.h"
29+
#include "tdbstore/TDBStore.h"
3030
#include "FlashIAP.h"
3131
#include "FlashIAPBlockDevice.h"
3232
#include "direct_access_devicekey/DirectAccessDevicekey.h"

storage/kvstore/tests/TESTS/kvstore/general_tests_phase_1/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717
#include "securestore/SecureStore.h"
18-
#include "kvstore/TDBStore.h"
18+
#include "tdbstore/TDBStore.h"
1919
#ifdef MBED_CONF_RTOS_PRESENT
2020
#include "Thread.h"
2121
#endif

storage/kvstore/tests/TESTS/kvstore/general_tests_phase_2/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717
#include "securestore/SecureStore.h"
18-
#include "kvstore/TDBStore.h"
18+
#include "tdbstore/TDBStore.h"
1919
#include "mbed_error.h"
2020
#include "FlashSimBlockDevice.h"
2121
#include "SlicingBlockDevice.h"

storage/kvstore/tests/TESTS/securestore/whitebox/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "securestore/SecureStore.h"
20-
#include "kvstore/TDBStore.h"
20+
#include "tdbstore/TDBStore.h"
2121
#ifdef MBED_CONF_RTOS_PRESENT
2222
#include "Thread.h"
2323
#endif

storage/kvstore/tests/UNITTESTS/FileSystemStore/moduletest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include "gtest/gtest.h"
1818
#include "blockdevice/HeapBlockDevice.h"
19-
#include "kvstore/FileSystemStore.h"
19+
#include "filesystemstore/FileSystemStore.h"
2020
#include "littlefs/LittleFileSystem.h"
2121
#include "mbed_error.h"
2222
#include <stdlib.h>

storage/kvstore/tests/UNITTESTS/TDBStore/moduletest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "gtest/gtest.h"
1818
#include "blockdevice/HeapBlockDevice.h"
1919
#include "blockdevice/FlashSimBlockDevice.h"
20-
#include "kvstore/TDBStore.h"
20+
#include "tdbstore/TDBStore.h"
2121
#include <stdlib.h>
2222

2323
#define BLOCK_SIZE (256)

0 commit comments

Comments
 (0)