From 23702ff2b3b1920d03fea0af0bcf8aaef1229850 Mon Sep 17 00:00:00 2001 From: Lingkai Dong Date: Wed, 18 Nov 2020 13:49:20 +0000 Subject: [PATCH] Update include paths to SFDP.h --- .../COMPONENT_OSPIF/include/QSPIF/OSPIFBlockDevice.h | 2 +- storage/blockdevice/COMPONENT_OSPIF/source/OSPIFBlockDevice.cpp | 2 +- .../COMPONENT_QSPIF/include/QSPIF/QSPIFBlockDevice.h | 2 +- storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp | 2 +- .../blockdevice/COMPONENT_SPIF/include/SPIF/SPIFBlockDevice.h | 2 +- storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp | 2 +- storage/blockdevice/source/SFDP.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/storage/blockdevice/COMPONENT_OSPIF/include/QSPIF/OSPIFBlockDevice.h b/storage/blockdevice/COMPONENT_OSPIF/include/QSPIF/OSPIFBlockDevice.h index ed616047ae..98b0873265 100644 --- a/storage/blockdevice/COMPONENT_OSPIF/include/QSPIF/OSPIFBlockDevice.h +++ b/storage/blockdevice/COMPONENT_OSPIF/include/QSPIF/OSPIFBlockDevice.h @@ -18,7 +18,7 @@ #define MBED_OSPIF_BLOCK_DEVICE_H #include "drivers/OSPI.h" -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #include "blockdevice/BlockDevice.h" #include "platform/Callback.h" diff --git a/storage/blockdevice/COMPONENT_OSPIF/source/OSPIFBlockDevice.cpp b/storage/blockdevice/COMPONENT_OSPIF/source/OSPIFBlockDevice.cpp index 11c88f27e9..e03bc89f7f 100644 --- a/storage/blockdevice/COMPONENT_OSPIF/source/OSPIFBlockDevice.cpp +++ b/storage/blockdevice/COMPONENT_OSPIF/source/OSPIFBlockDevice.cpp @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #include "platform/Callback.h" #include "OSPIFBlockDevice.h" #include diff --git a/storage/blockdevice/COMPONENT_QSPIF/include/QSPIF/QSPIFBlockDevice.h b/storage/blockdevice/COMPONENT_QSPIF/include/QSPIF/QSPIFBlockDevice.h index 0f26732e85..44e5a85551 100644 --- a/storage/blockdevice/COMPONENT_QSPIF/include/QSPIF/QSPIFBlockDevice.h +++ b/storage/blockdevice/COMPONENT_QSPIF/include/QSPIF/QSPIFBlockDevice.h @@ -18,7 +18,7 @@ #define MBED_QSPIF_BLOCK_DEVICE_H #include "drivers/QSPI.h" -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #include "blockdevice/BlockDevice.h" #include "platform/Callback.h" diff --git a/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp b/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp index 07ae0ea4dd..e07a5217db 100644 --- a/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp +++ b/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #include "platform/Callback.h" #include "QSPIFBlockDevice.h" #include diff --git a/storage/blockdevice/COMPONENT_SPIF/include/SPIF/SPIFBlockDevice.h b/storage/blockdevice/COMPONENT_SPIF/include/SPIF/SPIFBlockDevice.h index 445b4cd2c9..23da6f6f4a 100644 --- a/storage/blockdevice/COMPONENT_SPIF/include/SPIF/SPIFBlockDevice.h +++ b/storage/blockdevice/COMPONENT_SPIF/include/SPIF/SPIFBlockDevice.h @@ -20,7 +20,7 @@ #include "platform/SingletonPtr.h" #include "drivers/SPI.h" #include "drivers/DigitalOut.h" -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #include "blockdevice/BlockDevice.h" #ifndef MBED_CONF_SPIF_DRIVER_SPI_MOSI diff --git a/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp b/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp index 43ba157ed1..8fed84cfeb 100644 --- a/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp +++ b/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #include "SPIFBlockDevice.h" #include "rtos/ThisThread.h" #include "mbed_critical.h" diff --git a/storage/blockdevice/source/SFDP.cpp b/storage/blockdevice/source/SFDP.cpp index 2870c0ca8e..ff640f5609 100644 --- a/storage/blockdevice/source/SFDP.cpp +++ b/storage/blockdevice/source/SFDP.cpp @@ -22,7 +22,7 @@ #include #include "platform/mbed_error.h" -#include "drivers/internal/SFDP.h" +#include "blockdevice/internal/SFDP.h" #if (DEVICE_SPI || DEVICE_QSPI || DEVICE_OSPI)