flash: fix FC_FLEX_RAM class code path
If the flash class was defined as FC_FLEX_RAM then this would always drop through to the default handler. This bug was found by clang, so untested. Change-Id: I2d9fe6415dd216728a145519400f7b9ef1bd3c3a Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/773 Tested-by: jenkins Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com> Reviewed-by: Mathias Küster <kesmtp@freenet.de>__archive__
parent
0e4dee1164
commit
fb525cdd76
|
@ -587,6 +587,8 @@ static int kinetis_read_part_info(struct flash_bank *bank)
|
|||
LOG_DEBUG("FlexRAM bank %d already configured okay",
|
||||
kinfo->bank_ordinal);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
LOG_WARNING("Unknown or inconsistent flash class");
|
||||
reassign = 1;
|
||||
|
|
Loading…
Reference in New Issue