diff options
-rw-r--r-- | arch/sparc64/Makefile | 2 | ||||
-rw-r--r-- | arch/sparc64/oprofile/Makefile | 9 | ||||
-rw-r--r-- | arch/sparc64/oprofile/init.c | 23 |
3 files changed, 1 insertions, 33 deletions
diff --git a/arch/sparc64/Makefile b/arch/sparc64/Makefile index e9f98ec4a69e..3dbda408572b 100644 --- a/arch/sparc64/Makefile +++ b/arch/sparc64/Makefile | |||
@@ -30,7 +30,7 @@ head-y := arch/sparc64/kernel/head.o arch/sparc64/kernel/init_task.o | |||
30 | core-y += arch/sparc64/kernel/ arch/sparc64/mm/ | 30 | core-y += arch/sparc64/kernel/ arch/sparc64/mm/ |
31 | core-y += arch/sparc/math-emu/ | 31 | core-y += arch/sparc/math-emu/ |
32 | libs-y += arch/sparc64/prom/ arch/sparc64/lib/ | 32 | libs-y += arch/sparc64/prom/ arch/sparc64/lib/ |
33 | drivers-$(CONFIG_OPROFILE) += arch/sparc64/oprofile/ | 33 | drivers-$(CONFIG_OPROFILE) += arch/sparc/oprofile/ |
34 | 34 | ||
35 | boot := arch/sparc64/boot | 35 | boot := arch/sparc64/boot |
36 | 36 | ||
diff --git a/arch/sparc64/oprofile/Makefile b/arch/sparc64/oprofile/Makefile deleted file mode 100644 index e9feca1ca28b..000000000000 --- a/arch/sparc64/oprofile/Makefile +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
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 | ||
diff --git a/arch/sparc64/oprofile/init.c b/arch/sparc64/oprofile/init.c deleted file mode 100644 index 17bb6035069b..000000000000 --- a/arch/sparc64/oprofile/init.c +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | /** | ||
2 | * @file init.c | ||
3 | * | ||
4 | * @remark Copyright 2002 OProfile authors | ||
5 | * @remark Read the file COPYING | ||
6 | * | ||
7 | * @author John Levon <levon@movementarian.org> | ||
8 | */ | ||
9 | |||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/oprofile.h> | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/init.h> | ||
14 | |||
15 | int __init oprofile_arch_init(struct oprofile_operations *ops) | ||
16 | { | ||
17 | return -ENODEV; | ||
18 | } | ||
19 | |||
20 | |||
21 | void oprofile_arch_exit(void) | ||
22 | { | ||
23 | } | ||