aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/setup_32.c
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2006-12-03 23:59:07 -0500
committerPaul Mackerras <paulus@samba.org>2006-12-03 23:59:07 -0500
commit79acbb3ff2d8095b692e1502b9eb2ccec348de26 (patch)
tree6ab773e5a8f9de2cd6443362b21d0d6fffe3b35e /arch/powerpc/kernel/setup_32.c
parent19a79859e168640f8e16d7b216d211c1c52b687a (diff)
parent2b5f6dcce5bf94b9b119e9ed8d537098ec61c3d2 (diff)
Merge branch 'linux-2.6' into for-linus
Diffstat (limited to 'arch/powerpc/kernel/setup_32.c')
-rw-r--r--arch/powerpc/kernel/setup_32.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c
index 517ed1b1b160..04df53a3c86d 100644
--- a/arch/powerpc/kernel/setup_32.c
+++ b/arch/powerpc/kernel/setup_32.c
@@ -87,6 +87,7 @@ int ucache_bsize;
87unsigned long __init early_init(unsigned long dt_ptr) 87unsigned long __init early_init(unsigned long dt_ptr)
88{ 88{
89 unsigned long offset = reloc_offset(); 89 unsigned long offset = reloc_offset();
90 struct cpu_spec *spec;
90 91
91 /* First zero the BSS -- use memset_io, some platforms don't have 92 /* First zero the BSS -- use memset_io, some platforms don't have
92 * caches on yet */ 93 * caches on yet */
@@ -96,8 +97,11 @@ unsigned long __init early_init(unsigned long dt_ptr)
96 * Identify the CPU type and fix up code sections 97 * Identify the CPU type and fix up code sections
97 * that depend on which cpu we have. 98 * that depend on which cpu we have.
98 */ 99 */
99 identify_cpu(offset, 0); 100 spec = identify_cpu(offset);
100 do_cpu_ftr_fixups(offset); 101
102 do_feature_fixups(spec->cpu_features,
103 PTRRELOC(&__start___ftr_fixup),
104 PTRRELOC(&__stop___ftr_fixup));
101 105
102 return KERNELBASE + offset; 106 return KERNELBASE + offset;
103} 107}