From 6cb2d6dd7ae6049dce47dfb0b7c389dcf606119f Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Wed, 23 Jun 2010 00:53:17 +0800 Subject: error number: review Review allocation of error numbers in openocd to avoid overlap. Put brackets around negative numbers to avoid issues during macro expansion. Signed-off-by: Antonio Borneo --- src/flash/common.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/flash/common.h') diff --git a/src/flash/common.h b/src/flash/common.h index 4098873d..c78f24ce 100644 --- a/src/flash/common.h +++ b/src/flash/common.h @@ -36,13 +36,13 @@ unsigned get_flash_name_index(const char *name); */ bool flash_driver_name_matches(const char *name, const char *expected); -#define ERROR_FLASH_BANK_INVALID -900 -#define ERROR_FLASH_SECTOR_INVALID -901 -#define ERROR_FLASH_OPERATION_FAILED -902 -#define ERROR_FLASH_DST_OUT_OF_BANK -903 -#define ERROR_FLASH_DST_BREAKS_ALIGNMENT -904 -#define ERROR_FLASH_BUSY -905 -#define ERROR_FLASH_SECTOR_NOT_ERASED -906 -#define ERROR_FLASH_BANK_NOT_PROBED -907 +#define ERROR_FLASH_BANK_INVALID (-900) +#define ERROR_FLASH_SECTOR_INVALID (-901) +#define ERROR_FLASH_OPERATION_FAILED (-902) +#define ERROR_FLASH_DST_OUT_OF_BANK (-903) +#define ERROR_FLASH_DST_BREAKS_ALIGNMENT (-904) +#define ERROR_FLASH_BUSY (-905) +#define ERROR_FLASH_SECTOR_NOT_ERASED (-906) +#define ERROR_FLASH_BANK_NOT_PROBED (-907) #endif // FLASH_COMMON_H -- cgit v1.2.3