aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2006-03-26 22:26:25 -0500
committerPaul Mackerras <paulus@samba.org>2006-03-28 00:45:20 -0500
commitd0160bf0b3e87032be8e85f80ddd2f18e107b86f (patch)
treead29de605288def9799b1cde52e1c5ddf03b4ee6 /include/asm-powerpc
parent2f25194dbe0c4b2472ce133ea3e9bcbb14936ae7 (diff)
[PATCH] powerpc: Rename and export ppc64_firmware_features
We need to export ppc64_firmware_features for modules. Before we do that I think we should probably rename it to powerpc_firmware_features. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r--include/asm-powerpc/firmware.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-powerpc/firmware.h b/include/asm-powerpc/firmware.h
index 03c2fdff021b..77069df92bf8 100644
--- a/include/asm-powerpc/firmware.h
+++ b/include/asm-powerpc/firmware.h
@@ -82,11 +82,11 @@ enum {
82/* This is used to identify firmware features which are available 82/* This is used to identify firmware features which are available
83 * to the kernel. 83 * to the kernel.
84 */ 84 */
85extern unsigned long ppc64_firmware_features; 85extern unsigned long powerpc_firmware_features;
86 86
87#define firmware_has_feature(feature) \ 87#define firmware_has_feature(feature) \
88 ((FW_FEATURE_ALWAYS & (feature)) || \ 88 ((FW_FEATURE_ALWAYS & (feature)) || \
89 (FW_FEATURE_POSSIBLE & ppc64_firmware_features & (feature))) 89 (FW_FEATURE_POSSIBLE & powerpc_firmware_features & (feature)))
90 90
91extern void system_reset_fwnmi(void); 91extern void system_reset_fwnmi(void);
92extern void machine_check_fwnmi(void); 92extern void machine_check_fwnmi(void);