Skip to content

Commit e92efbd

Browse files
committed
Update the header file reference
1 parent 036831e commit e92efbd

File tree

17 files changed

+23
-23
lines changed

17 files changed

+23
-23
lines changed

drivers/internal/SFDP.h

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

2121
#include <cstddef>
2222
#include <cstdint>
23-
#include "storage/blockdevice/BlockDevice.h"
23+
#include "blockdevice/BlockDevice.h"
2424
#include "platform/Callback.h"
2525

2626
namespace mbed {

storage/blockdevice/COMPONENT_DATAFLASH/DataFlashBlockDevice.h

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

2121
#include "platform/PlatformMutex.h"
2222
#include "PinNames.h"
23-
#include "storage/blockdevice/BlockDevice.h"
23+
#include "blockdevice/BlockDevice.h"
2424
#include "drivers/SPI.h"
2525
#include "drivers/DigitalOut.h"
2626

storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#if DEVICE_FLASH
2222

2323
#include "FlashIAP.h"
24-
#include "storage/blockdevice/BlockDevice.h"
24+
#include "blockdevice/BlockDevice.h"
2525
#include "platform/mbed_toolchain.h"
2626

2727
/** BlockDevice using the FlashIAP API

storage/blockdevice/COMPONENT_I2CEE/I2CEEBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef MBED_I2CEEPROM_BLOCK_DEVICE_H
1818
#define MBED_I2CEEPROM_BLOCK_DEVICE_H
1919

20-
#include "storage/blockdevice/BlockDevice.h"
20+
#include "blockdevice/BlockDevice.h"
2121
#include "drivers/I2C.h"
2222

2323
/** BlockDevice for I2C based flash device such as

storage/blockdevice/COMPONENT_QSPIF/QSPIFBlockDevice.h

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

2020
#include "drivers/QSPI.h"
2121
#include "drivers/internal/SFDP.h"
22-
#include "storage/blockdevice/BlockDevice.h"
22+
#include "blockdevice/BlockDevice.h"
2323
#include "platform/Callback.h"
2424

2525
#ifndef MBED_CONF_QSPIF_QSPI_IO0

storage/blockdevice/COMPONENT_SD/SDBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/* If the target has no SPI support, then SD Card is not supported. */
2222
#if DEVICE_SPI
2323

24-
#include "storage/blockdevice/BlockDevice.h"
24+
#include "blockdevice/BlockDevice.h"
2525
#include "drivers/SPI.h"
2626
#include "drivers/Timer.h"
2727
#include "drivers/MbedCRC.h"

storage/blockdevice/COMPONENT_SPIF/SPIFBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "drivers/SPI.h"
2222
#include "drivers/DigitalOut.h"
2323
#include "drivers/internal/SFDP.h"
24-
#include "storage/blockdevice/BlockDevice.h"
24+
#include "blockdevice/BlockDevice.h"
2525

2626
#ifndef MBED_CONF_SPIF_DRIVER_SPI_MOSI
2727
#define MBED_CONF_SPIF_DRIVER_SPI_MOSI NC

storage/filesystem/FileSystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "platform/FileHandle.h"
2424
#include "platform/DirHandle.h"
2525
#include "platform/FileSystemLike.h"
26-
#include "storage/blockdevice/BlockDevice.h"
26+
#include "blockdevice/BlockDevice.h"
2727

2828
namespace mbed {
2929
/** \addtogroup file system */

storage/filesystem/fat/FATFileSystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define MBED_FATFILESYSTEM_H
2828

2929
#include "storage/filesystem/FileSystem.h"
30-
#include "storage/blockdevice/BlockDevice.h"
30+
#include "blockdevice/BlockDevice.h"
3131
#include "FileHandle.h"
3232
#include <stdint.h>
3333
#include "PlatformMutex.h"

storage/filesystem/littlefs/LittleFileSystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#define MBED_LFSFILESYSTEM_H
2222

2323
#include "storage/filesystem/FileSystem.h"
24-
#include "storage/blockdevice/BlockDevice.h"
24+
#include "blockdevice/BlockDevice.h"
2525
#include "platform/PlatformMutex.h"
2626
#include "storage/filesystem/littlefs/littlefs/lfs.h"
2727

0 commit comments

Comments
 (0)