forked from auracaster/openocd
flash/nor: use target_addr_t for flash bank base
This should allow users to configure flash at >32-bit addresses. Change-Id: I7c9d3c5762579011a2d9708e5317e5765349845c Signed-off-by: Tim Newsome <tim@sifive.com> Reviewed-on: http://openocd.zylin.com/4919 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
committed by
Matthias Welwarsky
parent
57e30102ea
commit
c3b90c052a
@@ -1584,9 +1584,11 @@ static int niietcm4_probe_k1921vk01t(struct flash_bank *bank)
|
||||
|
||||
char info_bootflash_addr_str[64];
|
||||
if (niietcm4_info->bflash_info_remap)
|
||||
snprintf(info_bootflash_addr_str, sizeof(info_bootflash_addr_str), "0x%08x base adress", bank->base);
|
||||
snprintf(info_bootflash_addr_str, sizeof(info_bootflash_addr_str),
|
||||
TARGET_ADDR_FMT " base adress", bank->base);
|
||||
else
|
||||
snprintf(info_bootflash_addr_str, sizeof(info_bootflash_addr_str), "not maped to global adress space");
|
||||
snprintf(info_bootflash_addr_str, sizeof(info_bootflash_addr_str),
|
||||
"not mapped to global adress space");
|
||||
|
||||
snprintf(niietcm4_info->chip_brief,
|
||||
sizeof(niietcm4_info->chip_brief),
|
||||
|
||||
Reference in New Issue
Block a user