diff options
Diffstat (limited to 'arch/sh/oprofile/common.c')
| -rw-r--r-- | arch/sh/oprofile/common.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/oprofile/common.c b/arch/sh/oprofile/common.c index b4c2d2b946dd..e4dd5d5a1115 100644 --- a/arch/sh/oprofile/common.c +++ b/arch/sh/oprofile/common.c @@ -49,7 +49,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)  	return oprofile_perf_init(ops);  } -void __exit oprofile_arch_exit(void) +void oprofile_arch_exit(void)  {  	oprofile_perf_exit();  	kfree(sh_pmu_op_name); @@ -60,5 +60,5 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)  	ops->backtrace = sh_backtrace;  	return -ENODEV;  } -void __exit oprofile_arch_exit(void) {} +void oprofile_arch_exit(void) {}  #endif /* CONFIG_HW_PERF_EVENTS */  |