diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-29 08:08:55 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-29 08:08:55 -0400 |
commit | c1c3a554a32c3de1340887caa5729d67ed6684d6 (patch) | |
tree | d01e4d07588f4d596c81be01fb7920e1d1697265 /arch/powerpc | |
parent | 0cb7b2afd79c5715cbd1d4eee826571fb17fdd65 (diff) |
powerpc: 32-bit needs cur_cpu_spec exported too
Somehow we ended up with an #ifdef CONFIG_PPC64 around the export
of cur_cpu_spec, but raid6 as a module needs it on ppc32 as well
as ppc64.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/cputable.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 1fb80baebc87..b91345fa0805 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -21,9 +21,7 @@ | |||
21 | #include <asm/cputable.h> | 21 | #include <asm/cputable.h> |
22 | 22 | ||
23 | struct cpu_spec* cur_cpu_spec = NULL; | 23 | struct cpu_spec* cur_cpu_spec = NULL; |
24 | #ifdef CONFIG_PPC64 | ||
25 | EXPORT_SYMBOL(cur_cpu_spec); | 24 | EXPORT_SYMBOL(cur_cpu_spec); |
26 | #endif | ||
27 | 25 | ||
28 | /* NOTE: | 26 | /* NOTE: |
29 | * Unlike ppc32, ppc64 will only call this once for the boot CPU, it's | 27 | * Unlike ppc32, ppc64 will only call this once for the boot CPU, it's |