diff options
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/trace.h | 4 | ||||
-rw-r--r-- | src/target/xscale.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/target/trace.h b/src/target/trace.h index 5fbedc4b..53502d4d 100644 --- a/src/target/trace.h +++ b/src/target/trace.h @@ -59,7 +59,7 @@ typedef enum trace_status int trace_point(struct target *target, uint32_t number); int trace_register_commands(struct command_context *cmd_ctx); -#define ERROR_TRACE_IMAGE_UNAVAILABLE -(1500) -#define ERROR_TRACE_INSTRUCTION_UNAVAILABLE -(1501) +#define ERROR_TRACE_IMAGE_UNAVAILABLE (-1500) +#define ERROR_TRACE_INSTRUCTION_UNAVAILABLE (-1501) #endif /* TRACE_H */ diff --git a/src/target/xscale.h b/src/target/xscale.h index 82f4e379..d429336e 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -176,6 +176,6 @@ enum XSCALE_TXRXCTRL, }; -#define ERROR_XSCALE_NO_TRACE_DATA (-1500) +#define ERROR_XSCALE_NO_TRACE_DATA (-700) #endif /* XSCALE_H */ |