Ver código fonte

make 8610 board use pixis reset

Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Jason Jin 17 anos atrás
pai
commit
a8318ec205
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      cpu/mpc86xx/cpu.c

+ 2 - 2
cpu/mpc86xx/cpu.c

@@ -131,7 +131,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
@@ -159,7 +159,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;