diff options
author | Olof Johansson <olof@lixom.net> | 2006-10-25 17:32:40 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-10-26 09:20:07 +1000 |
commit | 190a24f5605d95b786c92280bf7a51ebef43f29f (patch) | |
tree | e1200e7643562603b5207764cb4abb4d745e2b43 /arch | |
parent | f4d4c354bca18210296cc0a8f592c0cdb720bf20 (diff) |
[POWERPC] Make sure __cpu_preinit_ppc970 gets called on 970GX processors
Add check for 970GX for __cpu_preinit_ppc970.
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/head_64.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index f12e3c55520..291e3629b50 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S @@ -1641,6 +1641,8 @@ _GLOBAL(__start_initialization_multiplatform) cmpwi r0,0x3c /* 970FX */ beq 1f cmpwi r0,0x44 /* 970MP */ + beq 1f + cmpwi r0,0x45 /* 970GX */ bne 2f 1: bl .__cpu_preinit_ppc970 2: |