summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-02-20 22:07:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-02-20 22:07:22 +0000
commitd49389adb995168842d8f5b967945f6bbb281244 (patch)
tree7035607055dbc6c107416c594e7baefb89e69332 /c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c
parent2003-02-20 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-d49389adb995168842d8f5b967945f6bbb281244.tar.bz2
2003-02-20 Till Straumann <strauman@slac.stanford.edu>
PR 349/bsps * mpc6xx/exceptions/raw_exception.c, mpc6xx/mmu/bat.c, mpc6xx/mmu/pte121.c, shared/include/cpuIdent.c, shared/include/cpuIdent.h, shared/src/Makefile.am, shared/src/stack.c, shared/src/stackTrace.h, powerpc/registers.h: - undo improper 'fix' who broke mpc604r identification - fix: 7400 identification PVR value was wrong - enhance 'setdbat()' to switch OFF a given BAT if called with 0 size - fix: page table support bugfix - enhancement: provide routines to take and print stack trace snapshots - add definitions for HID1 and DABR SPRs
Diffstat (limited to 'c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c')
-rw-r--r--c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c b/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c
index 7b6c6a573c..e2fca933a2 100644
--- a/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c
+++ b/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/raw_exception.c
@@ -125,7 +125,7 @@ int mpc60x_vector_is_valid(rtems_vector vector)
break;
case PPC_604:
case PPC_604e:
- /* case PPC_604r: -- same value as PPC_750 */
+ case PPC_604r:
if (!mpc604_vector_is_valid(vector)) {
return 0;
}
@@ -138,7 +138,7 @@ int mpc60x_vector_is_valid(rtems_vector vector)
}
break;
default:
- printk("Please complete libcpu/powerpc/mpc6xx/raw_exception.c\n");
+ printk("Please complete libcpu/powerpc/mpc6xx/exceptions/raw_exception.c\n");
printk("current_ppc_cpu = %x\n", current_ppc_cpu);
return 0;
}