diff options
author | Kumar Gala <galak@freescale.com> | 2005-10-26 09:55:41 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-27 20:51:19 +1000 |
commit | cffb09ce6ba7706c89c6df9ca8e72c81adda13f0 (patch) | |
tree | 5226184532ed63be2aa785dcc5ae7896b7e6fc1e /arch/powerpc/mm/fault.c | |
parent | 328985b2c69d2592edd7f181a6b7360e51b08515 (diff) | |
download | kernel-crypto-cffb09ce6ba7706c89c6df9ca8e72c81adda13f0.tar.gz kernel-crypto-cffb09ce6ba7706c89c6df9ca8e72c81adda13f0.tar.xz kernel-crypto-cffb09ce6ba7706c89c6df9ca8e72c81adda13f0.zip |
[PATCH] powerpc: Fix warning related to do_dabr
do_dabr() is not relevant on 40x or Book-E processors so dont build it
Signed-off-by: Kumar K. Gala <kumar.gala@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/mm/fault.c')
-rw-r--r-- | arch/powerpc/mm/fault.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/mm/fault.c b/arch/powerpc/mm/fault.c index 3df641fa789..841d8b6323a 100644 --- a/arch/powerpc/mm/fault.c +++ b/arch/powerpc/mm/fault.c @@ -80,6 +80,7 @@ static int store_updates_sp(struct pt_regs *regs) return 0; } +#if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE)) static void do_dabr(struct pt_regs *regs, unsigned long error_code) { siginfo_t info; @@ -101,6 +102,7 @@ static void do_dabr(struct pt_regs *regs, unsigned long error_code) info.si_addr = (void __user *)regs->nip; force_sig_info(SIGTRAP, &info, current); } +#endif /* !(CONFIG_4xx || CONFIG_BOOKE)*/ /* * For 600- and 800-family processors, the error_code parameter is DSISR |