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

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

In message 1318552994-6653-4-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/avr32/lib/board.c |   16 +++-
  1 files changed, 3 insertions(+), 13 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
Here's a fish hangs in the net like a poor man's right in  the  law.
'Twill hardly come out. - Shakespeare, Pericles, Act II, Scene 1
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 03/10] avr32: 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/avr32/lib/board.c |   16 +++-
 1 files changed, 3 insertions(+), 13 deletions(-)

diff --git a/arch/avr32/lib/board.c b/arch/avr32/lib/board.c
index 3e1cc0d..63fe297 100644
--- a/arch/avr32/lib/board.c
+++ b/arch/avr32/lib/board.c
@@ -95,19 +95,10 @@ static inline void dma_alloc_init(void)
 
 static int init_baudrate(void)
 {
-   char tmp[64];
-   int i;
-
-   i = getenv_f(baudrate, tmp, sizeof(tmp));
-   if (i  0) {
-   gd-baudrate = simple_strtoul(tmp, NULL, 10);
-   } else {
-   gd-baudrate = CONFIG_BAUDRATE;
-   }
+   gd-baudrate = getenv_ulong(baudrate, 10, CONFIG_BAUDRATE);
return 0;
 }
 
-
 static int display_banner (void)
 {
printf (\n\n%s\n\n, version_string);
@@ -319,9 +310,8 @@ void board_init_r(gd_t *new_gd, ulong dest_addr)
jumptable_init();
console_init_r();
 
-   s = getenv(loadaddr);
-   if (s)
-   load_addr = simple_strtoul(s, NULL, 16);
+   /* Initialize from environment */
+   load_addr = getenv_ulong(loadaddr, 16, load_addr);
 
 #ifdef CONFIG_BITBANGMII
bb_miiphy_init();
-- 
1.7.3.1

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