From 081bc0611209ff2d78857a2e9430b77ed7766963 Mon Sep 17 00:00:00 2001 From: oharboe Date: Fri, 7 Mar 2008 16:15:46 +0000 Subject: [PATCH] Edgar Grimberg, fix arm926ejs_examine_debug_reason return value. git-svn-id: svn://svn.berlios.de/openocd/trunk@470 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/target/arm926ejs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/target/arm926ejs.c b/src/target/arm926ejs.c index 87603bca89..ff73e1a12a 100644 --- a/src/target/arm926ejs.c +++ b/src/target/arm926ejs.c @@ -337,9 +337,11 @@ int arm926ejs_examine_debug_reason(target_t *target) default: ERROR("BUG: unknown debug reason: 0x%x", debug_reason); target->debug_reason = DBG_REASON_DBGRQ; + retval = ERROR_TARGET_FAILURE; + break; } - return ERROR_OK; + return retval; } u32 arm926ejs_get_ttb(target_t *target) -- 2.30.2