aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSimon Glass2013-02-24 11:33:24 -0600
committerSimon Glass2013-02-28 21:09:23 -0600
commit978226da5eb46bac23695d96a4ce8113b12640d5 (patch)
treeabdf91b265c6d962ccaa52ac0e97478a0eb877bd /net
parent49c4f0370ba917a2608e933ca541898e9c098397 (diff)
downloadu-boot-978226da5eb46bac23695d96a4ce8113b12640d5.tar.gz
u-boot-978226da5eb46bac23695d96a4ce8113b12640d5.tar.xz
u-boot-978226da5eb46bac23695d96a4ce8113b12640d5.zip
net: Use new numeric setenv functions
Use setenv_ulong(), setenv_hex() and setenv_addr() in net/ Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r--net/net.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/net/net.c b/net/net.c
index a40cde1e94..df94789de9 100644
--- a/net/net.c
+++ b/net/net.c
@@ -528,15 +528,11 @@ restart:
528 case NETLOOP_SUCCESS: 528 case NETLOOP_SUCCESS:
529 net_cleanup_loop(); 529 net_cleanup_loop();
530 if (NetBootFileXferSize > 0) { 530 if (NetBootFileXferSize > 0) {
531 char buf[20];
532 printf("Bytes transferred = %ld (%lx hex)\n", 531 printf("Bytes transferred = %ld (%lx hex)\n",
533 NetBootFileXferSize, 532 NetBootFileXferSize,
534 NetBootFileXferSize); 533 NetBootFileXferSize);
535 sprintf(buf, "%lX", NetBootFileXferSize); 534 setenv_hex("filesize", NetBootFileXferSize);
536 setenv("filesize", buf); 535 setenv_hex("fileaddr", load_addr);
537
538 sprintf(buf, "%lX", (unsigned long)load_addr);
539 setenv("fileaddr", buf);
540 } 536 }
541 if (protocol != NETCONS) 537 if (protocol != NETCONS)
542 eth_halt(); 538 eth_halt();