This is an automated email from Gerrit. Marc Schink ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5743
-- gerrit commit 3f743bdaebe30aab98cc7100e9ca823046c2d478 Author: Marc Schink <[email protected]> Date: Wed Jul 1 10:24:53 2020 +0200 flash/nor/lpcspifi: Use 'bool' data type Change-Id: I0485a7885fe154f983c7a7ce84cbedb0ba32ca31 Signed-off-by: Marc Schink <[email protected]> diff --git a/src/flash/nor/lpcspifi.c b/src/flash/nor/lpcspifi.c index 04ac3bb..0aa9d8a 100644 --- a/src/flash/nor/lpcspifi.c +++ b/src/flash/nor/lpcspifi.c @@ -47,7 +47,7 @@ #define SPIFI_INIT_STACK_SIZE 512 struct lpcspifi_flash_bank { - int probed; + bool probed; uint32_t ssp_base; uint32_t io_base; uint32_t ioconfig_base; @@ -72,7 +72,7 @@ FLASH_BANK_COMMAND_HANDLER(lpcspifi_flash_bank_command) } bank->driver_priv = lpcspifi_info; - lpcspifi_info->probed = 0; + lpcspifi_info->probed = false; return ERROR_OK; } @@ -852,7 +852,7 @@ static int lpcspifi_probe(struct flash_bank *bank) /* If we've already probed, we should be fine to skip this time. */ if (lpcspifi_info->probed) return ERROR_OK; - lpcspifi_info->probed = 0; + lpcspifi_info->probed = false; lpcspifi_info->ssp_base = 0x40083000; lpcspifi_info->io_base = 0x400F4000; @@ -911,7 +911,7 @@ static int lpcspifi_probe(struct flash_bank *bank) bank->sectors = sectors; - lpcspifi_info->probed = 1; + lpcspifi_info->probed = true; return ERROR_OK; } -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
