From: oharboe Date: Fri, 7 Mar 2008 16:15:46 +0000 (+0000) Subject: Edgar Grimberg, fix arm926ejs_examine_debug_reason return value. X-Git-Tag: v0.1.0~819 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=081bc0611209ff2d78857a2e9430b77ed7766963 Edgar Grimberg, fix arm926ejs_examine_debug_reason return value. git-svn-id: svn://svn.berlios.de/openocd/trunk@470 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- 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)