summaryrefslogtreecommitdiff
path: root/common/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/system.c')
-rw-r--r--common/system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/system.c b/common/system.c
index b257bc8594..d57b1ce9ab 100644
--- a/common/system.c
+++ b/common/system.c
@@ -310,8 +310,8 @@ void system_disable_jump(void)
test_mockable enum system_image_copy_t system_get_image_copy(void)
{
- /* TODO: (ML) return which region is used in Code RAM */
#ifdef CONFIG_CODERAM_ARCH
+ /* Return which region is used in Code RAM */
return system_get_shrspi_image_copy();
#else
uintptr_t my_addr = (uintptr_t)system_get_image_copy -
@@ -477,8 +477,8 @@ int system_run_image_copy(enum system_image_copy_t copy)
if (base == 0xffffffff)
return EC_ERROR_INVAL;
- /* TODO: (ML) jump to little FW for code ram architecture */
#ifdef CONFIG_CODERAM_ARCH
+ /* Jump to little FW for code ram architecture */
init_addr = system_get_lfw_address(base);
#else
/* Make sure the reset vector is inside the destination image */