diff options
author | Sachin Sant <sachinp@in.ibm.com> | 2009-04-14 14:35:55 +0000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2009-04-15 15:23:55 +1000 |
commit | b71a0c296cee4debaf446760fbd29ead1587a7ac (patch) | |
tree | 18321db861d14a585ef653130af4b7fb4921c712 /arch/powerpc/platforms/pseries | |
parent | 306a82881b14d950d59e0b59a55093a07d82aa9a (diff) | |
download | kernel-crypto-b71a0c296cee4debaf446760fbd29ead1587a7ac.tar.gz kernel-crypto-b71a0c296cee4debaf446760fbd29ead1587a7ac.tar.xz kernel-crypto-b71a0c296cee4debaf446760fbd29ead1587a7ac.zip |
powerpc: pseries/dtl.c should include asm/firmware.h
A randconfig build on powerpc failed with:
dtl.c: In function 'dtl_init':
dtl.c:238: error: implicit declaration of function 'firmware_has_feature'
dtl.c:238: error: 'FW_FEATURE_SPLPAR' undeclared (first use in this function)
- We need firmware.h for these definitions.
Signed-off-by: Sachin Sant <sachinp@in.ibm.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries')
-rw-r--r-- | arch/powerpc/platforms/pseries/dtl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/dtl.c b/arch/powerpc/platforms/pseries/dtl.c index fafcaa0e81e..ab69925d579 100644 --- a/arch/powerpc/platforms/pseries/dtl.c +++ b/arch/powerpc/platforms/pseries/dtl.c @@ -25,6 +25,7 @@ #include <asm/smp.h> #include <asm/system.h> #include <asm/uaccess.h> +#include <asm/firmware.h> #include "plpar_wrappers.h" |