cfi: leave check on whether target is running to target_write_memory()

there was a check in clearing the status register that
called exit() if the target was running. target_write_memory()
has such a check and will report the error correctly.

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
__archive__
Øyvind Harboe 2011-04-27 23:02:28 +02:00
parent 5bd1f0bad4
commit 36d60ee6c8
1 changed files with 0 additions and 8 deletions

View File

@ -305,14 +305,6 @@ static int cfi_reset(struct flash_bank *bank)
static void cfi_intel_clear_status_register(struct flash_bank *bank)
{
struct target *target = bank->target;
if (target->state != TARGET_HALTED)
{
LOG_ERROR("BUG: attempted to clear status register while target wasn't halted");
exit(-1);
}
cfi_send_command(bank, 0x50, flash_address(bank, 0, 0x0));
}