Changeset 8ca2e5b in rtems
- Timestamp:
- Mar 25, 2003, 4:43:47 PM (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- de22321
- Parents:
- 55837f7
- Location:
- c/src/lib/libcpu/powerpc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/powerpc/ChangeLog
r55837f7 r8ca2e5b 1 2003-03-25 Till Straumann <strauman@slac.stanford.edu> 2 3 PR 349/bsps 4 * shared/include/cpuIdent.c: Readd PPC604r CPU. 5 1 6 2003-03-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c
r55837f7 r8ca2e5b 42 42 case PPC_8260: return "MPC8260"; 43 43 default: 44 printk("Unknown CPU value of 0x%x. Please add it to <libcpu/powerpc/shared/ cpu.h>\n", cpu );44 printk("Unknown CPU value of 0x%x. Please add it to <libcpu/powerpc/shared/include/cpuIdent.c>\n", cpu ); 45 45 } 46 46 return "UNKNOWN"; … … 56 56 case PPC_603ev: 57 57 case PPC_604: 58 /* case PPC_604r: */58 case PPC_604r: 59 59 case PPC_750: 60 60 case PPC_7400: … … 65 65 return current_ppc_cpu; 66 66 default: 67 printk("Unknown PVR value of 0x%x. Please add it to <libcpu/powerpc/shared/ cpu.h>\n", pvr );67 printk("Unknown PVR value of 0x%x. Please add it to <libcpu/powerpc/shared/include/cpuIdent.c>\n", pvr ); 68 68 return PPC_UNKNOWN; 69 69 }
Note: See TracChangeset
for help on using the changeset viewer.