Skip to content
Snippets Groups Projects
Commit 74593743 authored by Simon Glass's avatar Simon Glass Committed by Wolfgang Denk
Browse files

sparc: Use getenv_ulong() in place of getenv(), strtoul


This changes the board code to use the new getenv_ulong() function.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 1272592e
No related branches found
No related tags found
No related merge requests found
...@@ -87,13 +87,8 @@ ulong monitor_flash_len; ...@@ -87,13 +87,8 @@ ulong monitor_flash_len;
static int init_baudrate(void) static int init_baudrate(void)
{ {
char tmp[64]; /* long enough for environment variables */ gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
int i = getenv_f("baudrate", tmp, sizeof(tmp)); return 0;
gd->baudrate = (i > 0)
? (int)simple_strtoul(tmp, NULL, 10)
: CONFIG_BAUDRATE;
return (0);
} }
/***********************************************************************/ /***********************************************************************/
...@@ -366,9 +361,7 @@ void board_init_f(ulong bootflag) ...@@ -366,9 +361,7 @@ void board_init_f(ulong bootflag)
udelay(20); udelay(20);
/* Initialize from environment */ /* Initialize from environment */
if ((s = getenv("loadaddr")) != NULL) { load_addr = getenv_ulong("loadaddr", 16, load_addr);
load_addr = simple_strtoul(s, NULL, 16);
}
#if defined(CONFIG_CMD_NET) #if defined(CONFIG_CMD_NET)
if ((s = getenv("bootfile")) != NULL) { if ((s = getenv("bootfile")) != NULL) {
copy_filename(BootFile, s, sizeof(BootFile)); copy_filename(BootFile, s, sizeof(BootFile));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment