41 lines
2.5 KiB
Diff
41 lines
2.5 KiB
Diff
From 751e46825645cb1ce4e91c3f284f0f9dfef01d72 Mon Sep 17 00:00:00 2001
|
|
From: Martino Facchin <m.facchin@arduino.cc>
|
|
Date: Thu, 23 Sep 2021 15:16:10 +0200
|
|
Subject: [PATCH 084/204] BlockDevice: add mbed namespace to function
|
|
signatures
|
|
|
|
---
|
|
storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp | 2 +-
|
|
storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp b/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp
|
|
index 39b8c1c43c..898141f780 100644
|
|
--- a/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp
|
|
+++ b/storage/blockdevice/COMPONENT_QSPIF/source/QSPIFBlockDevice.cpp
|
|
@@ -617,7 +617,7 @@ int QSPIFBlockDevice::remove_csel_instance(PinName csel)
|
|
/*********************************************************/
|
|
/********** SFDP Parsing and Detection Functions *********/
|
|
/*********************************************************/
|
|
-int QSPIFBlockDevice::_sfdp_parse_basic_param_table(Callback<int(bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, bd_size_t)> sfdp_reader,
|
|
+int QSPIFBlockDevice::_sfdp_parse_basic_param_table(Callback<int(mbed::bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, bd_size_t)> sfdp_reader,
|
|
sfdp_hdr_info &sfdp_info)
|
|
{
|
|
uint8_t param_table[SFDP_BASIC_PARAMS_TBL_SIZE]; /* Up To 20 DWORDS = 80 Bytes */
|
|
diff --git a/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp b/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp
|
|
index bdbcae9e38..8b7e89b2d4 100644
|
|
--- a/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp
|
|
+++ b/storage/blockdevice/COMPONENT_SPIF/source/SPIFBlockDevice.cpp
|
|
@@ -607,7 +607,7 @@ spif_bd_error SPIFBlockDevice::_spi_send_general_command(int instruction, bd_add
|
|
/*********************************************************/
|
|
/********** SFDP Parsing and Detection Functions *********/
|
|
/*********************************************************/
|
|
-int SPIFBlockDevice::_sfdp_parse_basic_param_table(Callback<int(bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, bd_size_t)> sfdp_reader,
|
|
+int SPIFBlockDevice::_sfdp_parse_basic_param_table(Callback<int(mbed::bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, mbed::bd_size_t)> sfdp_reader,
|
|
sfdp_hdr_info &sfdp_info)
|
|
{
|
|
uint8_t param_table[SFDP_BASIC_PARAMS_TBL_SIZE]; /* Up To 20 DWORDS = 80 Bytes */
|
|
--
|
|
2.39.1
|
|
|