From: Paul Fertser Date: Tue, 23 Jul 2013 16:15:32 +0000 (+0400) Subject: lpcspifi: assume flash is unprotected after probing X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3b4a8af80d9cf3fb370c1177c2cf81f9c0a2e5e9;p=fw%2Fopenocd lpcspifi: assume flash is unprotected after probing Since the driver doesn't support any hardware flash protection, it doesn't make sense to report "protected" status after probing, as it requires extra commands to unprotect before flashing and might be confusing for the end-users. Change-Id: I04d96790cc42412df5334951f39fb6723c972ced Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/1525 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/flash/nor/lpcspifi.c b/src/flash/nor/lpcspifi.c index dfd8645e7..0c12e6418 100644 --- a/src/flash/nor/lpcspifi.c +++ b/src/flash/nor/lpcspifi.c @@ -913,7 +913,7 @@ static int lpcspifi_probe(struct flash_bank *bank) sectors[sector].offset = sector * lpcspifi_info->dev->sectorsize; sectors[sector].size = lpcspifi_info->dev->sectorsize; sectors[sector].is_erased = -1; - sectors[sector].is_protected = 1; + sectors[sector].is_protected = 0; } bank->sectors = sectors;