diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-01-26 07:23:34 +0100 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-01-26 07:23:34 +0100 |
commit | 4d52719a767455d319263d598e0f59e027895e00 (patch) | |
tree | a442521e5f32ce7160d7ac45d08df092eb4bb7ff /arch/powerpc/Kconfig | |
parent | [POWERPC] Celleb: setup sio in SCC (diff) | |
download | linux-4d52719a767455d319263d598e0f59e027895e00.tar.xz linux-4d52719a767455d319263d598e0f59e027895e00.zip |
[POWERPC] 83xx: Fix Kconfig to only enable FP math emulation for the MPC832x
Updated MATH_EMULATION depends to be on PPC_MPC832x instead of PPC_83xx. Only
the the MPC832x has no floating point unit in the core. Updated the other
83xx defconfigs that got math emulation turned on incorrectly.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/Kconfig')
-rw-r--r-- | arch/powerpc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 0855d55c194d..54d77a5b59f6 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig @@ -720,7 +720,7 @@ config FORCE_MAX_ZONEORDER config MATH_EMULATION bool "Math emulation" - depends on 4xx || 8xx || E200 || PPC_83xx || E500 + depends on 4xx || 8xx || E200 || PPC_MPC832x || E500 ---help--- Some PowerPC chips designed for embedded applications do not have a floating-point unit and therefore do not implement the |