This is an automated email from Gerrit.

Esben Haabendal ([email protected]) just uploaded a new patch set to Gerrit, 
which you can find at http://openocd.zylin.com/3095

-- gerrit

commit 6bac4d3bc33f9b35ef2f0d1cf429188d60f3f6cb
Author: Esben Haabendal <[email protected]>
Date:   Wed Nov 4 14:50:40 2015 +0100

    cfi: Fix fallback to memory writes
    
    Change-Id: I2d09139b95ff62c62a0b071584e85a87494ed313
    Signed-off-by: Esben Haabendal <[email protected]>

diff --git a/src/flash/nor/cfi.c b/src/flash/nor/cfi.c
index 97d3f19..90d7d83 100644
--- a/src/flash/nor/cfi.c
+++ b/src/flash/nor/cfi.c
@@ -1213,7 +1213,7 @@ static int cfi_intel_write_block(struct flash_bank *bank, 
const uint8_t *buffer,
                arm_algo.core_state = ARM_STATE_ARM;
        } else {
                LOG_ERROR("Unknown architecture");
-               return ERROR_FAIL;
+               return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
        }
 
        cfi_intel_clear_status_register(bank);
@@ -1811,7 +1811,7 @@ static int cfi_spansion_write_block(struct flash_bank 
*bank, const uint8_t *buff
                arm_algo = &armv4_5_algo;
        } else {
                LOG_ERROR("Unknown architecture");
-               return ERROR_FAIL;
+               return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
        }
 
        int target_code_size = 0;

-- 

------------------------------------------------------------------------------
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to