summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-07-11 10:05:53 +0800
committerTat-Chee Wan (USM)2011-07-11 10:05:53 +0800
commit9719b8e5bdb202dc07320141cb1b642e563b8b97 (patch)
treee2eb84c6133e549e9dab8fb09ce3f399b7f454bd
parente1309e3eb381cc375f661c21ec9d668f4b746d59 (diff)
fix invalid values for abort signals
Use correct enum defintion macros to define abort signal values
-rw-r--r--Debugger/debug_internals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Debugger/debug_internals.h b/Debugger/debug_internals.h
index 8292854..f7ab7d5 100644
--- a/Debugger/debug_internals.h
+++ b/Debugger/debug_internals.h
@@ -304,8 +304,8 @@ ENUM_END(bkpt_type_t)
/* FIXME: Need to validate against the ecos-generic-stub.c Error enums */
ENUM_BEGIN
ENUM_VALASSIGN(MSG_SIG_DEFAULT, 0) /**< Normal Signal Response. */
-ENUM_VALASSIGN(MSG_SIG_PREFETCH, 0) /**< Prefetch Abort Signal Response. */
-ENUM_VALASSIGN(MSG_SIG_DATA, 0) /**< Data Abort Signal Response. */
+ENUM_VAL(MSG_SIG_PREFETCH) /**< Prefetch Abort Signal Response. */
+ENUM_VAL(MSG_SIG_DATA) /**< Data Abort Signal Response. */
ENUM_END(dbg_msg_signo)
/** Debugger Message Error Enums