diff options
author | Martin Habets <errandir_news@mph.eclipse.co.uk> | 2006-10-17 22:21:48 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-17 22:28:53 -0400 |
commit | 9550e59c4587f637d9aa34689e32eea460e6f50c (patch) | |
tree | be6c47289c83e81f9b4e5238f7b1b2eaf1bf8fa6 /arch/sparc/oprofile/Makefile | |
parent | 872ec6484720e7ddfebb8e15c232fa7ca158ef2e (diff) |
[SPARC]: Add sparc profiling support
This patch adds profiling support to the sparc architecture. It is a
copy of the sparc64 implementation.
Signed-off-by: Martin Habets <errandir_news@mph.eclipse.co.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/oprofile/Makefile')
-rw-r--r-- | arch/sparc/oprofile/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/sparc/oprofile/Makefile b/arch/sparc/oprofile/Makefile new file mode 100644 index 000000000000..e9feca1ca28b --- /dev/null +++ b/arch/sparc/oprofile/Makefile | |||
@@ -0,0 +1,9 @@ | |||
1 | obj-$(CONFIG_OPROFILE) += oprofile.o | ||
2 | |||
3 | DRIVER_OBJS = $(addprefix ../../../drivers/oprofile/, \ | ||
4 | oprof.o cpu_buffer.o buffer_sync.o \ | ||
5 | event_buffer.o oprofile_files.o \ | ||
6 | oprofilefs.o oprofile_stats.o \ | ||
7 | timer_int.o ) | ||
8 | |||
9 | oprofile-y := $(DRIVER_OBJS) init.o | ||