diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_boot.c | 2 | ||||
-rw-r--r-- | common/cmd_nvedit.c | 2 | ||||
-rw-r--r-- | common/environment.c | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/common/cmd_boot.c b/common/cmd_boot.c index 182e2ab..e68f16f 100644 --- a/common/cmd_boot.c +++ b/common/cmd_boot.c @@ -83,7 +83,7 @@ U_BOOT_CMD( extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); U_BOOT_CMD( - reset, CFG_MAXARGS, 1, do_reset, + reset, 1, 0, do_reset, "reset - Perform RESET of the CPU\n", NULL ); diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index d3f50f8..9834ba6 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -248,7 +248,7 @@ int _do_setenv (int flag, int argc, char *argv[]) baudrate); udelay(50000); gd->baudrate = baudrate; -#ifdef CONFIG_PPC +#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2) gd->bd->bi_baudrate = baudrate; #endif diff --git a/common/environment.c b/common/environment.c index 19bdeb0..1d425a7 100644 --- a/common/environment.c +++ b/common/environment.c @@ -61,6 +61,7 @@ defined(CONFIG_TRAB) || \ defined(CONFIG_PPCHAMELEONEVB) || \ defined(CONFIG_M5271EVB) || \ + defined(CONFIG_IDMR) || \ defined(CONFIG_NAND_U_BOOT)) && \ defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */ /* XXX - This only works with GNU C */ |