diff options
author | Jason Jin <Jason.jin@freescale.com> | 2007-10-26 18:32:00 +0800 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-11-17 00:58:02 +0100 |
commit | f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19 (patch) | |
tree | bdb653dae51a50b5a65096885505dd98f48a685f /cpu | |
parent | db74b3c1c9481a6bffbf8cd445e5bcbf6908e836 (diff) | |
download | u-boot-imx-f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19.zip u-boot-imx-f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19.tar.gz u-boot-imx-f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19.tar.bz2 |
make 8610 board use pixis reset
Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc86xx/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c index 9456471..d83bedd 100644 --- a/cpu/mpc86xx/cpu.c +++ b/cpu/mpc86xx/cpu.c @@ -120,7 +120,7 @@ checkcpu(void) static inline void soft_restart(unsigned long addr) { -#ifndef CONFIG_MPC8641HPCN +#if !defined(CONFIG_MPC8641HPCN) && !defined(CONFIG_MPC8610HPCD) /* * SRR0 has system reset vector, SRR1 has default MSR value @@ -148,7 +148,7 @@ soft_restart(unsigned long addr) void do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) { -#ifndef CONFIG_MPC8641HPCN +#if !defined(CONFIG_MPC8641HPCN) && !defined(CONFIG_MPC8610HPCD) #ifdef CFG_RESET_ADDRESS ulong addr = CFG_RESET_ADDRESS; |