aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-11-16 16:55:31 -0500
committerH. Peter Anvin <hpa@zytor.com>2009-11-16 16:55:31 -0500
commit5bd085b5fbd8b0b8685a2173cb9263798fc2a44e (patch)
treed8c0c2c6a3d2cb5ace619d2cc8323ad0ad397e24
parent4b0f3b81eb33ef18283aa71440cccfede1753ae0 (diff)
x86: remove "extern" from function prototypes in <asm/proto.h>
Function prototypes don't need "extern", and it is generally frowned upon to have them. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--arch/x86/include/asm/proto.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/x86/include/asm/proto.h b/arch/x86/include/asm/proto.h
index 450c56bcd4f8..4009f6534f52 100644
--- a/arch/x86/include/asm/proto.h
+++ b/arch/x86/include/asm/proto.h
@@ -5,19 +5,19 @@
5 5
6/* misc architecture specific prototypes */ 6/* misc architecture specific prototypes */
7 7
8extern void early_idt_handler(void); 8void early_idt_handler(void);
9 9
10extern void system_call(void); 10void system_call(void);
11extern void syscall_init(void); 11void syscall_init(void);
12 12
13extern void ia32_syscall(void); 13void ia32_syscall(void);
14extern void ia32_cstar_target(void); 14void ia32_cstar_target(void);
15extern void ia32_sysenter_target(void); 15void ia32_sysenter_target(void);
16 16
17extern void syscall32_cpu_init(void); 17void syscall32_cpu_init(void);
18 18
19extern void x86_configure_nx(void); 19void x86_configure_nx(void);
20extern void x86_report_nx(void); 20void x86_report_nx(void);
21 21
22extern int reboot_force; 22extern int reboot_force;
23 23