]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
sparc: Use getenv_ulong() in place of getenv(), strtoul
authorSimon Glass <sjg@chromium.org>
Thu, 13 Oct 2011 14:43:13 +0000 (14:43 +0000)
committerWolfgang Denk <wd@denx.de>
Sun, 23 Oct 2011 21:33:19 +0000 (23:33 +0200)
This changes the board code to use the new getenv_ulong() function.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sparc/lib/board.c

index af4f0356a46f6e4afce10527922a6187942759ec..69b5ca450814a9038fb5ea1876edc5e85fc1d4d9 100644 (file)
@@ -87,13 +87,8 @@ ulong monitor_flash_len;
 
 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;
 }
 
 /***********************************************************************/
@@ -366,9 +361,7 @@ void board_init_f(ulong bootflag)
        udelay(20);
 
        /* 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));