diff options
author | Benjamin Herrenschmidt | 2006-10-24 08:42:40 +0200 |
---|---|---|
committer | Paul Mackerras | 2006-10-25 03:42:10 +0200 |
commit | 42c4aaadb737e0e672b3fb86b2c41ff59f0fb8bc (patch) | |
tree | 368a26a61085e567357b3974e7799e56069032eb /include/asm-powerpc/firmware.h | |
parent | [POWERPC] Fix hang in start_ldr if _end or _edata is unaligned (diff) | |
download | kernel-qcow2-linux-42c4aaadb737e0e672b3fb86b2c41ff59f0fb8bc.tar.gz kernel-qcow2-linux-42c4aaadb737e0e672b3fb86b2c41ff59f0fb8bc.tar.xz kernel-qcow2-linux-42c4aaadb737e0e672b3fb86b2c41ff59f0fb8bc.zip |
[POWERPC] Consolidate feature fixup code
There are currently two versions of the functions for applying the
feature fixups, one for CPU features and one for firmware features. In
addition, they are both in assembly and with separate implementations
for 32 and 64 bits. identify_cpu() is also implemented in assembly and
separately for 32 and 64 bits.
This patch replaces them with a pair of C functions. The call sites are
slightly moved on ppc64 as well to be called from C instead of from
assembly, though it's a very small change, and thus shouldn't cause any
problem.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/firmware.h')
-rw-r--r-- | include/asm-powerpc/firmware.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-powerpc/firmware.h b/include/asm-powerpc/firmware.h index 1022737f4f34..c16e0a6b9dab 100644 --- a/include/asm-powerpc/firmware.h +++ b/include/asm-powerpc/firmware.h @@ -96,6 +96,8 @@ extern void machine_check_fwnmi(void); /* This is true if we are using the firmware NMI handler (typically LPAR) */ extern int fwnmi_active; +extern unsigned int __start___fw_ftr_fixup, __stop___fw_ftr_fixup; + #else /* __ASSEMBLY__ */ #define BEGIN_FW_FTR_SECTION 96: |