aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/oprofile/init.c
diff options
context:
space:
mode:
authorPaolo Ciarrocchi <paolo.ciarrocchi@gmail.com>2008-02-22 17:09:50 -0500
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:40:49 -0400
commitd717ca84c02f4b60a85502c23bca5698801dfaae (patch)
treece9864fd41f5b238937fabcb3e9d203ec2f50527 /arch/x86/oprofile/init.c
parent65eb6b4326daddd1cccd003bd4df3fd75b06f0e1 (diff)
x86: coding style fixes to arch/x86/oprofile/init.c
Before: total: 5 errors, 4 warnings, 48 lines checked After: total: 0 errors, 4 warnings, 49 lines checked No code changed: arch/x86/oprofile/init.o: text data bss dec hex filename 42 0 0 42 2a init.o.before 42 0 0 42 2a init.o.after md5: 74c94c315cfbf245aeba36eceac57e66 init.o.before.asm 74c94c315cfbf245aeba36eceac57e66 init.o.after.asm Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/oprofile/init.c')
-rw-r--r--arch/x86/oprofile/init.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/arch/x86/oprofile/init.c b/arch/x86/oprofile/init.c
index 5341d481d92f..cdfe4c54deca 100644
--- a/arch/x86/oprofile/init.c
+++ b/arch/x86/oprofile/init.c
@@ -10,18 +10,19 @@
10#include <linux/oprofile.h> 10#include <linux/oprofile.h>
11#include <linux/init.h> 11#include <linux/init.h>
12#include <linux/errno.h> 12#include <linux/errno.h>
13 13
14/* We support CPUs that have performance counters like the Pentium Pro 14/*
15 * We support CPUs that have performance counters like the Pentium Pro
15 * with the NMI mode driver. 16 * with the NMI mode driver.
16 */ 17 */
17 18
18extern int op_nmi_init(struct oprofile_operations * ops); 19extern int op_nmi_init(struct oprofile_operations *ops);
19extern int op_nmi_timer_init(struct oprofile_operations * ops); 20extern int op_nmi_timer_init(struct oprofile_operations *ops);
20extern void op_nmi_exit(void); 21extern void op_nmi_exit(void);
21extern void x86_backtrace(struct pt_regs * const regs, unsigned int depth); 22extern void x86_backtrace(struct pt_regs * const regs, unsigned int depth);
22 23
23 24
24int __init oprofile_arch_init(struct oprofile_operations * ops) 25int __init oprofile_arch_init(struct oprofile_operations *ops)
25{ 26{
26 int ret; 27 int ret;
27 28