2003-03-25 Till Straumann <strauman@slac.stanford.edu>

PR 349/bsps
	* shared/include/cpuIdent.c: Readd PPC604r CPU.
This commit is contained in:
Joel Sherrill
2003-03-25 16:43:47 +00:00
parent 55837f7e4d
commit 8ca2e5b778
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2003-03-25 Till Straumann <strauman@slac.stanford.edu>
PR 349/bsps
* shared/include/cpuIdent.c: Readd PPC604r CPU.
2003-03-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove AC_CONFIG_AUX_DIR.

View File

@@ -41,7 +41,7 @@ char *get_ppc_cpu_type_name(ppc_cpu_id_t cpu)
case PPC_860: return "MPC860";
case PPC_8260: return "MPC8260";
default:
printk("Unknown CPU value of 0x%x. Please add it to <libcpu/powerpc/shared/cpu.h>\n", cpu );
printk("Unknown CPU value of 0x%x. Please add it to <libcpu/powerpc/shared/include/cpuIdent.c>\n", cpu );
}
return "UNKNOWN";
}
@@ -55,7 +55,7 @@ ppc_cpu_id_t get_ppc_cpu_type()
case PPC_603:
case PPC_603ev:
case PPC_604:
/* case PPC_604r: */
case PPC_604r:
case PPC_750:
case PPC_7400:
case PPC_604e:
@@ -64,7 +64,7 @@ ppc_cpu_id_t get_ppc_cpu_type()
case PPC_8260:
return current_ppc_cpu;
default:
printk("Unknown PVR value of 0x%x. Please add it to <libcpu/powerpc/shared/cpu.h>\n", pvr );
printk("Unknown PVR value of 0x%x. Please add it to <libcpu/powerpc/shared/include/cpuIdent.c>\n", pvr );
return PPC_UNKNOWN;
}
}