summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-10-13 14:43:11 +0000
committerWolfgang Denk <wd@denx.de>2011-10-23 23:33:19 +0200
commit98e4611f100b563d1b7991d02e3599357af6d287 (patch)
treee60f3a97022da61890090ace531a2e8ced7655f2
parent94e4dae9fa206e94af2d3d426f57f14d2c514dc0 (diff)
downloadblackbird-obmc-uboot-98e4611f100b563d1b7991d02e3599357af6d287.tar.gz
blackbird-obmc-uboot-98e4611f100b563d1b7991d02e3599357af6d287.zip
mips: 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>
-rw-r--r--arch/mips/lib/board.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c
index cc75d3ffa1..1274d63f12 100644
--- a/arch/mips/lib/board.c
+++ b/arch/mips/lib/board.c
@@ -101,14 +101,8 @@ static void display_flash_config(ulong size)
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;
}
@@ -348,9 +342,7 @@ void board_init_r (gd_t *id, ulong dest_addr)
/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
/* 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));
OpenPOWER on IntegriCloud