From 9719b8e5bdb202dc07320141cb1b642e563b8b97 Mon Sep 17 00:00:00 2001 From: Tat-Chee Wan (USM) Date: Mon, 11 Jul 2011 10:05:53 +0800 Subject: fix invalid values for abort signals Use correct enum defintion macros to define abort signal values --- Debugger/debug_internals.h | 4 ++-- 1 file 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 -- cgit v1.2.3