diff options
author | Kumar Gala <galak@freescale.com> | 2005-05-07 00:30:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-07 01:09:28 -0400 |
commit | b272125273103458b9727df1868b81bae64f44cb (patch) | |
tree | 5718bd3d76a457bf80be7785bad553d1fdd98ec1 /arch/ppc/Kconfig | |
parent | b7c2b704bd78aa3665fc24100bd2d4f5f8305d7a (diff) |
[PATCH] ppc32: Fix POWER3/POWER4 compiler error
In separating out support for hardware floating point we missed the fact
that both POWER3 and POWER4 have HW FP. Enable CONFIG_PPC_FPU for POWER3
and POWER4 fixes the issue.
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Acked-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc/Kconfig')
-rw-r--r-- | arch/ppc/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig index d0d94e56b90b..600f23d7fd33 100644 --- a/arch/ppc/Kconfig +++ b/arch/ppc/Kconfig | |||
@@ -77,9 +77,11 @@ config 44x | |||
77 | bool "44x" | 77 | bool "44x" |
78 | 78 | ||
79 | config POWER3 | 79 | config POWER3 |
80 | select PPC_FPU | ||
80 | bool "POWER3" | 81 | bool "POWER3" |
81 | 82 | ||
82 | config POWER4 | 83 | config POWER4 |
84 | select PPC_FPU | ||
83 | bool "POWER4 and 970 (G5)" | 85 | bool "POWER4 and 970 (G5)" |
84 | 86 | ||
85 | config 8xx | 87 | config 8xx |