Re: [U-Boot] [PATCH 09/10] sparc: Use getenv_ulong() in place of getenv(), strtoul

2011-10-23 Thread Wolfgang Denk
Dear Simon Glass,

In message 1318552994-6653-10-git-send-email-...@chromium.org you wrote:
 This changes the board code to use the new getenv_ulong() function.
 
 Signed-off-by: Simon Glass s...@chromium.org
 ---
  arch/sparc/lib/board.c |   13 +++--
  1 files changed, 3 insertions(+), 10 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
You're dead, Jim.
-- McCoy, Amok Time, stardate 3372.7
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 09/10] sparc: Use getenv_ulong() in place of getenv(), strtoul

2011-10-13 Thread Simon Glass
This changes the board code to use the new getenv_ulong() function.

Signed-off-by: Simon Glass s...@chromium.org
---
 arch/sparc/lib/board.c |   13 +++--
 1 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/arch/sparc/lib/board.c b/arch/sparc/lib/board.c
index af4f035..69b5ca4 100644
--- a/arch/sparc/lib/board.c
+++ b/arch/sparc/lib/board.c
@@ -87,13 +87,8 @@ ulong monitor_flash_len;
 
 static int init_baudrate(void)
 {
-   char tmp[64];   /* long enough for environment variables */
-   int i = getenv_f(baudrate, tmp, sizeof(tmp));
-
-   gd-baudrate = (i  0)
-   ? (int)simple_strtoul(tmp, NULL, 10)
-   : CONFIG_BAUDRATE;
-   return (0);
+   gd-baudrate = getenv_ulong(baudrate, 10, CONFIG_BAUDRATE);
+   return 0;
 }
 
 /***/
@@ -366,9 +361,7 @@ void board_init_f(ulong bootflag)
udelay(20);
 
/* Initialize from environment */
-   if ((s = getenv(loadaddr)) != NULL) {
-   load_addr = simple_strtoul(s, NULL, 16);
-   }
+   load_addr = getenv_ulong(loadaddr, 16, load_addr);
 #if defined(CONFIG_CMD_NET)
if ((s = getenv(bootfile)) != NULL) {
copy_filename(BootFile, s, sizeof(BootFile));
-- 
1.7.3.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot