From e62721c4dd81f2073cc6c6c61d8267df292550b5 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 10 Jan 2011 12:00:27 +0000 Subject: [PATCH] 2011-01-09 Sebastian Huber * new-exceptions/bspsupport/ppc_exc_categories.c: Fixed e200 machine check category. --- c/src/lib/libcpu/powerpc/ChangeLog | 5 +++++ .../powerpc/new-exceptions/bspsupport/ppc_exc_categories.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/c/src/lib/libcpu/powerpc/ChangeLog b/c/src/lib/libcpu/powerpc/ChangeLog index e02240a3e8..f1732134a3 100644 --- a/c/src/lib/libcpu/powerpc/ChangeLog +++ b/c/src/lib/libcpu/powerpc/ChangeLog @@ -1,3 +1,8 @@ +2011-01-09 Sebastian Huber + + * new-exceptions/bspsupport/ppc_exc_categories.c: Fixed e200 machine + check category. + 2010-12-30 Sebastian Huber * Makefile.am, preinstall.am, mpc83xx/include/mpc83xx.h, diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_categories.c b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_categories.c index b88a0bfcea..a567f42734 100644 --- a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_categories.c +++ b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/ppc_exc_categories.c @@ -174,7 +174,7 @@ static const ppc_exc_categories e300_category_table = { static const ppc_exc_categories e200_category_table = { [ASM_BOOKE_CRIT_VECTOR] = PPC_EXC_BOOKE_CRITICAL | PPC_EXC_ASYNC, - [ASM_MACH_VECTOR] = PPC_EXC_E500_MACHCHK, + [ASM_MACH_VECTOR] = PPC_EXC_BOOKE_CRITICAL, [ASM_PROT_VECTOR] = PPC_EXC_CLASSIC, [ASM_ISI_VECTOR] = PPC_EXC_CLASSIC, [ASM_EXT_VECTOR] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,