flash: fix stellaris class regression
for some reason the following commit was incorrect
769064de4b
Only the Sandstorm and Fury class should write this register.
Change-Id: Ie18f1da6e9b59fb99cca47aa93c7f2fee447ccea
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/400
Tested-by: jenkins
__archive__
parent
15f546e92f
commit
1340f952a7
|
@ -529,7 +529,7 @@ static void stellaris_set_flash_timing(struct flash_bank *bank)
|
||||||
uint32_t usecrl = (stellaris_info->mck_freq/1000000ul-1);
|
uint32_t usecrl = (stellaris_info->mck_freq/1000000ul-1);
|
||||||
|
|
||||||
/* only valid for Sandstorm and Fury class devices */
|
/* only valid for Sandstorm and Fury class devices */
|
||||||
if (stellaris_info->target_class < 2)
|
if (stellaris_info->target_class > 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
LOG_DEBUG("usecrl = %i",(int)(usecrl));
|
LOG_DEBUG("usecrl = %i",(int)(usecrl));
|
||||||
|
|
Loading…
Reference in New Issue