]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - common/cmd_net.c
nand: constify id/manu tables
[karo-tx-uboot.git] / common / cmd_net.c
index b1310069647b5b92568a2673fc749f0f1a37239a..973fa21274926ee9d043ebf1df89c807d79a7099 100644 (file)
@@ -28,8 +28,6 @@
 #include <command.h>
 #include <net.h>
 
-extern int do_bootm (cmd_tbl_t *, int, int, char * const []);
-
 static int netboot_common (proto_t, cmd_tbl_t *, int , char * const []);
 
 int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
@@ -213,7 +211,7 @@ netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char * const argv[])
        flush_cache(load_addr, size);
 
        /* Loading ok, check if we should attempt an auto-start */
-       if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
+       if (getenv_yesno("autostart")) {
                char *local_args[2];
                local_args[0] = argv[0];
                local_args[1] = NULL;
@@ -297,7 +295,7 @@ int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 
 U_BOOT_CMD(
        cdp,    1,      1,      do_cdp,
-       "Perform CDP network configuration"
+       "Perform CDP network configuration",
 );
 #endif