Skip to content

Commit 1070aae

Browse files
committed
Fix blockdevice headers
1 parent bd234d7 commit 1070aae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: cores/arduino/mbed/storage/blockdevice/COMPONENT_QSPIF/include/QSPIF/QSPIFBlockDevice.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ class QSPIFBlockDevice : public mbed::BlockDevice {
315315
/* SFDP Detection and Parsing Functions */
316316
/****************************************/
317317
// Parse and Detect required Basic Parameters from Table
318-
int _sfdp_parse_basic_param_table(mbed::Callback<int(bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, bd_size_t)> sfdp_reader,
318+
int _sfdp_parse_basic_param_table(mbed::Callback<int(mbed::bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, mbed::bd_size_t)> sfdp_reader,
319319
mbed::sfdp_hdr_info &sfdp_info);
320320

321321
// Detect the soft reset protocol and reset - returns error if soft reset is not supported

Diff for: cores/arduino/mbed/storage/blockdevice/COMPONENT_SPIF/include/SPIF/SPIFBlockDevice.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class SPIFBlockDevice : public mbed::BlockDevice {
226226
void *rx_buffer, mbed::bd_size_t rx_length);
227227

228228
// Parse and Detect required Basic Parameters from Table
229-
int _sfdp_parse_basic_param_table(mbed::Callback<int(bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, bd_size_t)> sfdp_reader,
229+
int _sfdp_parse_basic_param_table(mbed::Callback<int(mbed::bd_addr_t, mbed::sfdp_cmd_addr_size_t, uint8_t, uint8_t, void *, mbed::bd_size_t)> sfdp_reader,
230230
mbed::sfdp_hdr_info &hdr_info);
231231

232232
// Detect fastest read Bus mode supported by device

0 commit comments

Comments
 (0)