2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-11-17 23:25:46 +08:00

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>
This commit is contained in:
Robert Richter 2011-03-16 12:10:12 +01:00
parent c814d160f6
commit ec6b426c4d
3 changed files with 3 additions and 7 deletions

View File

@ -30,9 +30,6 @@ config OPROFILE_EVENT_MULTIPLEX
config HAVE_OPROFILE config HAVE_OPROFILE
bool bool
config HAVE_HWSAMPLER
bool
config KPROBES config KPROBES
bool "Kprobes" bool "Kprobes"
depends on MODULES depends on MODULES

View File

@ -115,7 +115,6 @@ config S390
select ARCH_INLINE_WRITE_UNLOCK_BH select ARCH_INLINE_WRITE_UNLOCK_BH
select ARCH_INLINE_WRITE_UNLOCK_IRQ select ARCH_INLINE_WRITE_UNLOCK_IRQ
select ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE select ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE
select HAVE_HWSAMPLER
config SCHED_OMIT_FRAME_POINTER config SCHED_OMIT_FRAME_POINTER
def_bool y def_bool y

View File

@ -133,7 +133,7 @@ static int oprofile_create_hwsampling_files(struct super_block *sb,
return 0; return 0;
} }
int oprofile_hwsampler_init(struct oprofile_operations* ops) static int oprofile_hwsampler_init(struct oprofile_operations *ops)
{ {
if (hwsampler_setup()) if (hwsampler_setup())
return -ENODEV; return -ENODEV;
@ -166,13 +166,13 @@ int oprofile_hwsampler_init(struct oprofile_operations* ops)
return 0; return 0;
} }
void oprofile_hwsampler_exit(void) static void oprofile_hwsampler_exit(void)
{ {
oprofile_timer_exit(); oprofile_timer_exit();
hwsampler_shutdown(); hwsampler_shutdown();
} }
int __init oprofile_arch_init(struct oprofile_operations* ops) int __init oprofile_arch_init(struct oprofile_operations *ops)
{ {
ops->backtrace = s390_backtrace; ops->backtrace = s390_backtrace;