diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-07-28 14:53:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-31 06:39:39 -0400 |
commit | 0d1edf46ba229b46efacf75c0544b88c05a7b266 (patch) | |
tree | a26262e9f4e85ba7150dfa4e06998a37daa6a984 /arch/x86/xen/Makefile | |
parent | eac4345be6d17541039791f15f173d0426423df1 (diff) |
xen: compile irq functions without -pg for ftrace
For some reason I managed to miss a bunch of irq-related functions
which also need to be compiled without -pg when using ftrace. This
patch moves them into their own file, and starts a cleanup process
I've been meaning to do anyway.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: "Alex Nixon (Intern)" <Alex.Nixon@eu.citrix.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/xen/Makefile')
-rw-r--r-- | arch/x86/xen/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index 5bfee243cf9a..9ee745fa5527 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile | |||
@@ -2,9 +2,10 @@ ifdef CONFIG_FTRACE | |||
2 | # Do not profile debug and lowlevel utilities | 2 | # Do not profile debug and lowlevel utilities |
3 | CFLAGS_REMOVE_spinlock.o = -pg | 3 | CFLAGS_REMOVE_spinlock.o = -pg |
4 | CFLAGS_REMOVE_time.o = -pg | 4 | CFLAGS_REMOVE_time.o = -pg |
5 | CFLAGS_REMOVE_irq.o = -pg | ||
5 | endif | 6 | endif |
6 | 7 | ||
7 | obj-y := enlighten.o setup.o multicalls.o mmu.o \ | 8 | obj-y := enlighten.o setup.o multicalls.o mmu.o irq.o \ |
8 | time.o xen-asm_$(BITS).o grant-table.o suspend.o | 9 | time.o xen-asm_$(BITS).o grant-table.o suspend.o |
9 | 10 | ||
10 | obj-$(CONFIG_SMP) += smp.o spinlock.o | 11 | obj-$(CONFIG_SMP) += smp.o spinlock.o |