diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-09 18:02:11 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-09 18:02:11 -0500 |
commit | 7def6b34f910f08d7ef0a14646da067719237ca2 (patch) | |
tree | 8ebc3b7fd7595d1dce4e55d745b604eecf14b98e /lib_mips | |
parent | dd60d1223b99a88a7216f3e041fe40634ad4c2bb (diff) |
lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'lib_mips')
-rw-r--r-- | lib_mips/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_mips/board.c b/lib_mips/board.c index 654c5af1a21..dd3d167402b 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -399,7 +399,7 @@ void board_init_r (gd_t *id, ulong dest_addr) if ((s = getenv ("loadaddr")) != NULL) { load_addr = simple_strtoul (s, NULL, 16); } -#if (CONFIG_COMMANDS & CFG_CMD_NET) || defined(CONFIG_CMD_NET) +#if defined(CONFIG_CMD_NET) if ((s = getenv ("bootfile")) != NULL) { copy_filename (BootFile, s, sizeof (BootFile)); } @@ -410,7 +410,7 @@ void board_init_r (gd_t *id, ulong dest_addr) misc_init_r (); #endif -#if (CONFIG_COMMANDS & CFG_CMD_NET) || defined(CONFIG_CMD_NET) +#if defined(CONFIG_CMD_NET) #if defined(CONFIG_NET_MULTI) puts ("Net: "); #endif |