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

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

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2011-10-13 14:43:07 +00:00 committed by Wolfgang Denk
parent dc8bbea017
commit eb68b41d5a

View File

@ -95,19 +95,10 @@ static inline void dma_alloc_init(void)
static int init_baudrate(void) static int init_baudrate(void)
{ {
char tmp[64]; gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
int i;
i = getenv_f("baudrate", tmp, sizeof(tmp));
if (i > 0) {
gd->baudrate = simple_strtoul(tmp, NULL, 10);
} else {
gd->baudrate = CONFIG_BAUDRATE;
}
return 0; return 0;
} }
static int display_banner (void) static int display_banner (void)
{ {
printf ("\n\n%s\n\n", version_string); 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(); jumptable_init();
console_init_r(); console_init_r();
s = getenv("loadaddr"); /* Initialize from environment */
if (s) load_addr = getenv_ulong("loadaddr", 16, load_addr);
load_addr = simple_strtoul(s, NULL, 16);
#ifdef CONFIG_BITBANGMII #ifdef CONFIG_BITBANGMII
bb_miiphy_init(); bb_miiphy_init();