mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
net: Use new numeric setenv functions
Use setenv_ulong(), setenv_hex() and setenv_addr() in net/ Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
49c4f0370b
commit
978226da5e
2 changed files with 3 additions and 9 deletions
|
@ -362,7 +362,6 @@ static void fm_init_qmi(struct fm_qmi_common *qmi)
|
|||
int fm_init_common(int index, struct ccsr_fman *reg)
|
||||
{
|
||||
int rc;
|
||||
char env_addr[32];
|
||||
#if defined(CONFIG_SYS_QE_FMAN_FW_IN_NOR)
|
||||
void *addr = (void *)CONFIG_SYS_QE_FMAN_FW_ADDR;
|
||||
#elif defined(CONFIG_SYS_QE_FMAN_FW_IN_NAND)
|
||||
|
@ -416,8 +415,7 @@ int fm_init_common(int index, struct ccsr_fman *reg)
|
|||
rc = fman_upload_firmware(index, ®->fm_imem, addr);
|
||||
if (rc)
|
||||
return rc;
|
||||
sprintf(env_addr, "0x%lx", (long unsigned int)addr);
|
||||
setenv("fman_ucode", env_addr);
|
||||
setenv_addr("fman_ucode", addr);
|
||||
|
||||
fm_init_muram(index, ®->muram);
|
||||
fm_init_qmi(®->fm_qmi_common);
|
||||
|
|
|
@ -528,15 +528,11 @@ restart:
|
|||
case NETLOOP_SUCCESS:
|
||||
net_cleanup_loop();
|
||||
if (NetBootFileXferSize > 0) {
|
||||
char buf[20];
|
||||
printf("Bytes transferred = %ld (%lx hex)\n",
|
||||
NetBootFileXferSize,
|
||||
NetBootFileXferSize);
|
||||
sprintf(buf, "%lX", NetBootFileXferSize);
|
||||
setenv("filesize", buf);
|
||||
|
||||
sprintf(buf, "%lX", (unsigned long)load_addr);
|
||||
setenv("fileaddr", buf);
|
||||
setenv_hex("filesize", NetBootFileXferSize);
|
||||
setenv_hex("fileaddr", load_addr);
|
||||
}
|
||||
if (protocol != NETCONS)
|
||||
eth_halt();
|
||||
|
|
Loading…
Reference in a new issue