aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTarek BOCHKATI <tarek.bouchkati@st.com>2020-11-20 20:25:38 +0100
committerAntonio Borneo <borneo.antonio@gmail.com>2020-12-09 14:29:37 +0000
commitcc26808136d483e4bf0d1fc0dc3ce199de637f1f (patch)
treecbaf8ca3bd15d4bf483ff802c9a8f3fbd5337432 /src
parent861e75f54efbcc1e0717192c6ddb120478d6c226 (diff)
downloadriscv-openocd-cc26808136d483e4bf0d1fc0dc3ce199de637f1f.zip
riscv-openocd-cc26808136d483e4bf0d1fc0dc3ce199de637f1f.tar.gz
riscv-openocd-cc26808136d483e4bf0d1fc0dc3ce199de637f1f.tar.bz2
flash/nor/sfdp|stmqspi: fix build issue with clang on mac OS
Change-Id: I3b3aa4236125523ad65fd615ada0f5647d26f526 Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@st.com> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5940 Tested-by: jenkins Reviewed-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/flash/nor/sfdp.c4
-rw-r--r--src/flash/nor/stmqspi.c26
2 files changed, 15 insertions, 15 deletions
diff --git a/src/flash/nor/sfdp.c b/src/flash/nor/sfdp.c
index 2fbc37d..2183ac1 100644
--- a/src/flash/nor/sfdp.c
+++ b/src/flash/nor/sfdp.c
@@ -90,8 +90,8 @@ int spi_sfdp(struct flash_bank *bank, struct flash_device *dev,
return ERROR_FLASH_BANK_NOT_PROBED;
}
if (((header.revision >> 24) & 0xFF) != SFDP_ACCESS_PROT) {
- LOG_ERROR("access protocol 0x%02" PRIx8 " not implemented",
- (header.revision >> 24) & 0xFF);
+ LOG_ERROR("access protocol 0x%02x not implemented",
+ (header.revision >> 24) & 0xFFU);
return ERROR_FLASH_BANK_NOT_PROBED;
}
diff --git a/src/flash/nor/stmqspi.c b/src/flash/nor/stmqspi.c
index 11529f4..f54e497 100644
--- a/src/flash/nor/stmqspi.c
+++ b/src/flash/nor/stmqspi.c
@@ -455,8 +455,8 @@ static int qspi_write_enable(struct flash_bank *bank)
if ((stmqspi_info->saved_cr & (BIT(SPI_DUAL_FLASH) | BIT(SPI_FSEL_FLASH)))
!= BIT(SPI_FSEL_FLASH))
if ((status & (SPIFLASH_WE_BIT | SPIFLASH_BSY_BIT)) != SPIFLASH_WE_BIT) {
- LOG_ERROR("Cannot write enable flash1. Status=0x%02" PRIx8,
- status & 0xFF);
+ LOG_ERROR("Cannot write enable flash1. Status=0x%02x",
+ status & 0xFFU);
return ERROR_FLASH_OPERATION_FAILED;
}
@@ -464,8 +464,8 @@ static int qspi_write_enable(struct flash_bank *bank)
status >>= 8;
if ((stmqspi_info->saved_cr & (BIT(SPI_DUAL_FLASH) | BIT(SPI_FSEL_FLASH))) != 0)
if ((status & (SPIFLASH_WE_BIT | SPIFLASH_BSY_BIT)) != SPIFLASH_WE_BIT) {
- LOG_ERROR("Cannot write enable flash2. Status=0x%02" PRIx8,
- status & 0xFF);
+ LOG_ERROR("Cannot write enable flash2. Status=0x%02x",
+ status & 0xFFU);
return ERROR_FLASH_OPERATION_FAILED;
}
@@ -548,8 +548,8 @@ COMMAND_HANDLER(stmqspi_handle_mass_erase_command)
if (((stmqspi_info->saved_cr & (BIT(SPI_DUAL_FLASH) | BIT(SPI_FSEL_FLASH)))
!= BIT(SPI_FSEL_FLASH)) && ((status & SPIFLASH_BSY_BIT) == 0) &&
((status & SPIFLASH_WE_BIT) != 0)) {
- LOG_ERROR("Mass erase command not accepted by flash1. Status=0x%02" PRIx8,
- status & 0xFF);
+ LOG_ERROR("Mass erase command not accepted by flash1. Status=0x%02x",
+ status & 0xFFU);
retval = ERROR_FLASH_OPERATION_FAILED;
goto err;
}
@@ -559,8 +559,8 @@ COMMAND_HANDLER(stmqspi_handle_mass_erase_command)
if (((stmqspi_info->saved_cr & (BIT(SPI_DUAL_FLASH) | BIT(SPI_FSEL_FLASH))) != 0) &&
((status & SPIFLASH_BSY_BIT) == 0) &&
((status & SPIFLASH_WE_BIT) != 0)) {
- LOG_ERROR("Mass erase command not accepted by flash2. Status=0x%02" PRIx8,
- status & 0xFF);
+ LOG_ERROR("Mass erase command not accepted by flash2. Status=0x%02x",
+ status & 0xFFU);
retval = ERROR_FLASH_OPERATION_FAILED;
goto err;
}
@@ -959,8 +959,8 @@ static int qspi_erase_sector(struct flash_bank *bank, unsigned int sector)
if (((stmqspi_info->saved_cr & (BIT(SPI_DUAL_FLASH) | BIT(SPI_FSEL_FLASH)))
!= BIT(SPI_FSEL_FLASH)) && ((status & SPIFLASH_BSY_BIT) == 0) &&
((status & SPIFLASH_WE_BIT) != 0)) {
- LOG_ERROR("Sector erase command not accepted by flash1. Status=0x%02" PRIx8,
- status & 0xFF);
+ LOG_ERROR("Sector erase command not accepted by flash1. Status=0x%02x",
+ status & 0xFFU);
retval = ERROR_FLASH_OPERATION_FAILED;
goto err;
}
@@ -971,8 +971,8 @@ static int qspi_erase_sector(struct flash_bank *bank, unsigned int sector)
if (((stmqspi_info->saved_cr & (BIT(SPI_DUAL_FLASH) | BIT(SPI_FSEL_FLASH))) != 0) &&
((status & SPIFLASH_BSY_BIT) == 0) &&
((status & SPIFLASH_WE_BIT) != 0)) {
- LOG_ERROR("Sector erase command not accepted by flash2. Status=0x%02" PRIx8,
- status & 0xFF);
+ LOG_ERROR("Sector erase command not accepted by flash2. Status=0x%02x",
+ status & 0xFFU);
retval = ERROR_FLASH_OPERATION_FAILED;
goto err;
}
@@ -1214,7 +1214,7 @@ static int stmqspi_blank_check(struct flash_bank *bank)
/* we need le_32_to_h, but that's the same as h_to_le_32 */
result = h_to_le_32(erase_check_info.result);
bank->sectors[sector + index].is_erased = ((result & 0xFF) == 0xFF);
- LOG_DEBUG("Flash sector %u checked: 0x%04" PRIx16, sector + index, result & 0xFFFF);
+ LOG_DEBUG("Flash sector %u checked: 0x%04x", sector + index, result & 0xFFFFU);
}
keep_alive();
sector += count;