diff mbox

[U-Boot,1/3] nds32: Use getenv_ulong() in place of getenv(), strtoul

Message ID 1319449593-2427-1-git-send-email-macpaul@andestech.com
State Accepted
Commit 569bc625e3123f9c9bf7406c2cd37f93d2cdc416
Delegated to: Macpaul Lin
Headers show

Commit Message

Macpaul Lin Oct. 24, 2011, 9:46 a.m. UTC
This changes the board code to use the new getenv_ulong() function.

Signed-off-by: Macpaul Lin <macpaul@andestech.com>
---
 arch/nds32/lib/board.c |   12 ++----------
 1 files changed, 2 insertions(+), 10 deletions(-)

Comments

Macpaul Lin Nov. 1, 2011, 4:33 a.m. UTC | #1
Hi Macpaul,

2011/10/24 Macpaul Lin <macpaul@andestech.com>:
> This changes the board code to use the new getenv_ulong() function.
>
> Signed-off-by: Macpaul Lin <macpaul@andestech.com>
> ---
>  arch/nds32/lib/board.c |   12 ++----------
>  1 files changed, 2 insertions(+), 10 deletions(-)

Applied to u-boot-nds32/master, thanks.

Best regards,
Macpaul Lin
diff mbox

Patch

diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c
index 1776a72..2fd0e93 100644
--- a/arch/nds32/lib/board.c
+++ b/arch/nds32/lib/board.c
@@ -50,13 +50,7 @@  ulong monitor_flash_len;
 #endif
 static int init_baudrate(void)
 {
-	char tmp[64];	/* long enough for environment variables */
-	int i = getenv_f("baudrate", tmp, sizeof(tmp));
-
-	gd->bd->bi_baudrate = gd->baudrate = (i > 0)
-			? (int) simple_strtoul(tmp, NULL, 10)
-			: CONFIG_BAUDRATE;
-
+	gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
 	return 0;
 }
 
@@ -400,9 +394,7 @@  void board_init_r(gd_t *id, ulong dest_addr)
 #endif
 
 	/* Initialize from environment */
-	s = getenv("loadaddr");
-	if (s != NULL)
-		load_addr = simple_strtoul(s, NULL, 16);
+	load_addr = getenv_ulong("loadaddr", 16, load_addr);
 
 #if defined(CONFIG_CMD_NET)
 	s = getenv("bootfile");