diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 19:29:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 19:29:18 -0400 |
commit | fafa3a3f16723997f039a0193997464d66dafd8f (patch) | |
tree | dd7e93c8bde2b8ac8ec67f3f8302f8ddf4ec9c43 /arch | |
parent | 7e2225d860772aaa07e1cebca6a5aa6f93f9aa91 (diff) | |
parent | 431ceb83f703a343bdd14350480a2224fa4bfedf (diff) |
Merge branch 'x86/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86: fix TSC build error on 32bit
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/tsc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c index 3c36f92160c9..7603c0553909 100644 --- a/arch/x86/kernel/tsc.c +++ b/arch/x86/kernel/tsc.c | |||
@@ -358,6 +358,7 @@ static cycle_t read_tsc(void) | |||
358 | ret : clocksource_tsc.cycle_last; | 358 | ret : clocksource_tsc.cycle_last; |
359 | } | 359 | } |
360 | 360 | ||
361 | #ifdef CONFIG_X86_64 | ||
361 | static cycle_t __vsyscall_fn vread_tsc(void) | 362 | static cycle_t __vsyscall_fn vread_tsc(void) |
362 | { | 363 | { |
363 | cycle_t ret = (cycle_t)vget_cycles(); | 364 | cycle_t ret = (cycle_t)vget_cycles(); |
@@ -365,6 +366,7 @@ static cycle_t __vsyscall_fn vread_tsc(void) | |||
365 | return ret >= __vsyscall_gtod_data.clock.cycle_last ? | 366 | return ret >= __vsyscall_gtod_data.clock.cycle_last ? |
366 | ret : __vsyscall_gtod_data.clock.cycle_last; | 367 | ret : __vsyscall_gtod_data.clock.cycle_last; |
367 | } | 368 | } |
369 | #endif | ||
368 | 370 | ||
369 | static struct clocksource clocksource_tsc = { | 371 | static struct clocksource clocksource_tsc = { |
370 | .name = "tsc", | 372 | .name = "tsc", |