diff options
author | Marcelo Tosatti <marcelo.tosatti@cyclades.com> | 2005-09-09 16:01:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 16:57:29 -0400 |
commit | 83f7da8acd81354e921ff12d6efbeae5b1a5d6a4 (patch) | |
tree | 2ecc0a7759867b08bac04170941d66bef6846f4e /arch/ppc/kernel/traps.c | |
parent | e31e14ec356f36b131576be5bc31d8fef7e95483 (diff) |
[PATCH] ppc32: make perfmon.o CONFIG_E500 specific
Subject says it all, there is no need to link perfmon.o on
sub-architectures other than CONFIG_E500.
Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc/kernel/traps.c')
-rw-r--r-- | arch/ppc/kernel/traps.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/ppc/kernel/traps.c b/arch/ppc/kernel/traps.c index d87423d1003a..8356d544fa60 100644 --- a/arch/ppc/kernel/traps.c +++ b/arch/ppc/kernel/traps.c | |||
@@ -849,10 +849,12 @@ void AltivecAssistException(struct pt_regs *regs) | |||
849 | } | 849 | } |
850 | #endif /* CONFIG_ALTIVEC */ | 850 | #endif /* CONFIG_ALTIVEC */ |
851 | 851 | ||
852 | #ifdef CONFIG_E500 | ||
852 | void PerformanceMonitorException(struct pt_regs *regs) | 853 | void PerformanceMonitorException(struct pt_regs *regs) |
853 | { | 854 | { |
854 | perf_irq(regs); | 855 | perf_irq(regs); |
855 | } | 856 | } |
857 | #endif | ||
856 | 858 | ||
857 | #ifdef CONFIG_FSL_BOOKE | 859 | #ifdef CONFIG_FSL_BOOKE |
858 | void CacheLockingException(struct pt_regs *regs, unsigned long address, | 860 | void CacheLockingException(struct pt_regs *regs, unsigned long address, |