Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Paolo Ciarrocchi and committed by
Ingo Molnar
d717ca84 65eb6b43

+7 -6
+7 -6
arch/x86/oprofile/init.c
··· 10 10 #include <linux/oprofile.h> 11 11 #include <linux/init.h> 12 12 #include <linux/errno.h> 13 - 14 - /* We support CPUs that have performance counters like the Pentium Pro 13 + 14 + /* 15 + * We support CPUs that have performance counters like the Pentium Pro 15 16 * with the NMI mode driver. 16 17 */ 17 - 18 - extern int op_nmi_init(struct oprofile_operations * ops); 19 - extern int op_nmi_timer_init(struct oprofile_operations * ops); 18 + 19 + extern int op_nmi_init(struct oprofile_operations *ops); 20 + extern int op_nmi_timer_init(struct oprofile_operations *ops); 20 21 extern void op_nmi_exit(void); 21 22 extern void x86_backtrace(struct pt_regs * const regs, unsigned int depth); 22 23 23 24 24 - int __init oprofile_arch_init(struct oprofile_operations * ops) 25 + int __init oprofile_arch_init(struct oprofile_operations *ops) 25 26 { 26 27 int ret; 27 28