Skip to content

Commit 51247d0

Browse files
committed
Update header path reference
1 parent 41f0796 commit 51247d0

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

storage/kvstore/conf/kv_config.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
#include "storage/kvstore/include/KVStore.h"
1919
#include "storage/kvstore/kv_map/KVMap.h"
2020
#include "blockdevice/BlockDevice.h"
21-
#include "storage/filesystem/FileSystem.h"
21+
#include "filesystem/FileSystem.h"
2222
#include "storage/kvstore/filesystemstore/FileSystemStore.h"
2323
#include "blockdevice/SlicingBlockDevice.h"
24-
#include "storage/filesystem/fat/FATFileSystem.h"
25-
#include "storage/filesystem/littlefs/LittleFileSystem.h"
24+
#include "fat/FATFileSystem.h"
25+
#include "littlefs/LittleFileSystem.h"
2626
#include "storage/kvstore/tdbstore/TDBStore.h"
2727
#include "mbed_error.h"
2828
#include "drivers/FlashIAP.h"

storage/kvstore/filesystemstore/FileSystemStore.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
#include "FileSystemStore.h"
2020
#include "storage/kvstore/conf/kv_config.h"
21-
#include "storage/filesystem/Dir.h"
22-
#include "storage/filesystem/File.h"
21+
#include "filesystem/Dir.h"
22+
#include "filesystem/File.h"
2323
#include "blockdevice/BlockDevice.h"
2424
#include "mbed_error.h"
2525
#include <string.h>

storage/kvstore/filesystemstore/FileSystemStore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define MBED_FILE_SYSTEM_STORE_H
2020

2121
#include "storage/kvstore/include/KVStore.h"
22-
#include "storage/filesystem/FileSystem.h"
22+
#include "filesystem/FileSystem.h"
2323

2424
namespace mbed {
2525

storage/kvstore/kv_map/KVMap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "platform/PlatformMutex.h"
2121
#include "platform/SingletonPtr.h"
2222
#include "blockdevice/BlockDevice.h"
23-
#include "storage/filesystem/FileSystem.h"
23+
#include "filesystem/FileSystem.h"
2424

2525
namespace mbed {
2626

storage/system_storage/SystemStorage.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616
#include "blockdevice/BlockDevice.h"
17-
#include "storage/filesystem/FileSystem.h"
18-
#include "storage/filesystem/fat/FATFileSystem.h"
19-
#include "storage/filesystem/littlefs/LittleFileSystem.h"
17+
#include "filesystem/FileSystem.h"
18+
#include "fat/FATFileSystem.h"
19+
#include "littlefs/LittleFileSystem.h"
2020
#include "mbed_error.h"
2121

2222

0 commit comments

Comments
 (0)