cfi_protect is not implemented on Spansion flashes (many do not even have protection bits). Demote from error to warning, so that common board code can use "flash write_image erase unlock" regardless of the flash type.
Signed-off-by: Michael Schwingen <michael@schwingen.org>
This commit is contained in:
parent
d8ece229f9
commit
09a0a69c09
|
@ -1163,8 +1163,8 @@ static int cfi_protect(struct flash_bank *bank, int set, int first, int last)
|
||||||
return cfi_intel_protect(bank, set, first, last);
|
return cfi_intel_protect(bank, set, first, last);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
LOG_ERROR("protect: cfi primary command set %i unsupported", cfi_info->pri_id);
|
LOG_WARNING("protect: cfi primary command set %i unsupported", cfi_info->pri_id);
|
||||||
return ERROR_FAIL;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue