diff options
author | Robert Richter <robert.richter@amd.com> | 2011-03-16 12:10:12 +0100 |
---|---|---|
committer | Robert Richter <robert.richter@amd.com> | 2011-03-16 14:30:40 +0100 |
commit | ec6b426c4dbb9eef40375c389746cab7e931a584 (patch) | |
tree | 6078f54953896063a344f52ddd89b738553a8fc4 /arch/s390 | |
parent | c814d160f61466ea6d4491bb4e8e548856e27a58 (diff) | |
download | linux-ec6b426c4dbb9eef40375c389746cab7e931a584.tar.gz linux-ec6b426c4dbb9eef40375c389746cab7e931a584.tar.bz2 linux-ec6b426c4dbb9eef40375c389746cab7e931a584.zip |
oprofile, s390: Cleanups
Remove unused HAVE_HWSAMPLER config option. It is not used anymore,
removing it.
Also make some functions static and some coding style fixes.
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/Kconfig | 1 | ||||
-rw-r--r-- | arch/s390/oprofile/init.c | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 0cf20adfbb45..ff19efdf6fef 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig @@ -115,7 +115,6 @@ config S390 select ARCH_INLINE_WRITE_UNLOCK_BH select ARCH_INLINE_WRITE_UNLOCK_IRQ select ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE - select HAVE_HWSAMPLER config SCHED_OMIT_FRAME_POINTER def_bool y diff --git a/arch/s390/oprofile/init.c b/arch/s390/oprofile/init.c index 0e38a5b8793f..16c76def4a9d 100644 --- a/arch/s390/oprofile/init.c +++ b/arch/s390/oprofile/init.c @@ -133,7 +133,7 @@ static int oprofile_create_hwsampling_files(struct super_block *sb, return 0; } -int oprofile_hwsampler_init(struct oprofile_operations* ops) +static int oprofile_hwsampler_init(struct oprofile_operations *ops) { if (hwsampler_setup()) return -ENODEV; @@ -166,13 +166,13 @@ int oprofile_hwsampler_init(struct oprofile_operations* ops) return 0; } -void oprofile_hwsampler_exit(void) +static void oprofile_hwsampler_exit(void) { oprofile_timer_exit(); hwsampler_shutdown(); } -int __init oprofile_arch_init(struct oprofile_operations* ops) +int __init oprofile_arch_init(struct oprofile_operations *ops) { ops->backtrace = s390_backtrace; |