Commit 80ca9c98f50c11b63b87971594d7e38cba0bbcef

Authored by Thomas Gleixner
Committed by Ingo Molnar
1 parent 40fec50ac4

x86: move tsc related declarations

tsc has also it's own header file. Nuke the stupid 64 bit ifdef
while at it.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 2 changed files with 1 additions and 5 deletions Side-by-side Diff

include/asm-x86/proto.h
... ... @@ -51,11 +51,8 @@
51 51 extern unsigned long table_start, table_end;
52 52  
53 53 extern int exception_trace;
54   -extern unsigned cpu_khz;
55   -extern unsigned tsc_khz;
56 54  
57 55 extern int reboot_force;
58   -extern int notsc_setup(char *);
59 56  
60 57 extern int gsi_irq_sharing(int gsi);
61 58  
include/asm-x86/tsc.h
... ... @@ -73,9 +73,8 @@
73 73 extern void check_tsc_sync_source(int cpu);
74 74 extern void check_tsc_sync_target(void);
75 75  
76   -#ifdef CONFIG_X86_64
77 76 extern void tsc_calibrate(void);
78   -#endif
  77 +extern int notsc_setup(char *);
79 78  
80 79 #endif