diff options
author | Becky Bruce <bgill@freescale.com> | 2006-01-31 17:52:59 -0600 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-02-10 16:51:50 +1100 |
commit | 66f2d025e234d44e35ae5bcec328078c35b8a8fb (patch) | |
tree | d3b62d75f044e2b522f56d632ba16b1036cdf8bf | |
parent | d6d93856cb90eeb07062ad938bd26f554bf1b9b9 (diff) | |
download | blackbird-op-linux-66f2d025e234d44e35ae5bcec328078c35b8a8fb.tar.gz blackbird-op-linux-66f2d025e234d44e35ae5bcec328078c35b8a8fb.zip |
[PATCH] powerpc: Fix Kernel FP unavail exception for BookE
Updated FP unavailable exception to refer to the correct
function in traps.c. head_booke.h was using the old name, KernelFP,
instead of kernel_fp_unavailable_exception.
Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/kernel/head_booke.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/head_booke.h b/arch/powerpc/kernel/head_booke.h index 5827c27e0b59..8536e7676160 100644 --- a/arch/powerpc/kernel/head_booke.h +++ b/arch/powerpc/kernel/head_booke.h @@ -358,6 +358,6 @@ label: NORMAL_EXCEPTION_PROLOG; \ bne load_up_fpu; /* if from user, just load it up */ \ addi r3,r1,STACK_FRAME_OVERHEAD; \ - EXC_XFER_EE_LITE(0x800, KernelFP) + EXC_XFER_EE_LITE(0x800, kernel_fp_unavailable_exception) #endif /* __HEAD_BOOKE_H__ */ |