summaryrefslogtreecommitdiff
path: root/chip/npcx/lfw/ec_lfw.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/npcx/lfw/ec_lfw.c')
-rw-r--r--chip/npcx/lfw/ec_lfw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/chip/npcx/lfw/ec_lfw.c b/chip/npcx/lfw/ec_lfw.c
index e9710398f3..c3a505ce69 100644
--- a/chip/npcx/lfw/ec_lfw.c
+++ b/chip/npcx/lfw/ec_lfw.c
@@ -83,12 +83,12 @@ bin2ram(void)
{
/* copy image from RO base */
if (IS_BIT_SET(NPCX_FWCTRL, NPCX_FWCTRL_RO_REGION))
- flash_burst_copy_fw_to_mram(CONFIG_FW_RO_OFF, CONFIG_CDRAM_BASE,
- CONFIG_FW_RO_SIZE - LFW_SIZE);
+ flash_burst_copy_fw_to_mram(CONFIG_RO_MEM_OFF,
+ CONFIG_CDRAM_BASE, CONFIG_RO_SIZE - LFW_SIZE);
/* copy image from RW base */
else
- flash_burst_copy_fw_to_mram(CONFIG_FW_RW_OFF, CONFIG_CDRAM_BASE,
- CONFIG_FW_RW_SIZE - LFW_SIZE);
+ flash_burst_copy_fw_to_mram(CONFIG_RW_MEM_OFF,
+ CONFIG_CDRAM_BASE, CONFIG_RW_SIZE - LFW_SIZE);
/* Disable FIU pins to tri-state */
CLEAR_BIT(NPCX_DEVCNT, NPCX_DEVCNT_F_SPI_TRIS);