-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thomas Gleixner
authored and
Thomas Gleixner
committed
Oct 12, 2007
1 parent
9341e2b
commit 326c8d8
Showing
7 changed files
with
25 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5d5a2989b72847e1f5763420ea31383ca63ebf53 | ||
refs/heads/master: 2f0798a3b1c2155b8f30858e853557aef9da2e4e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
#ifdef CONFIG_X86_32 | ||
# include "timex_32.h" | ||
/* x86 architecture timex specifications */ | ||
#ifndef _ASM_X86_TIMEX_H | ||
#define _ASM_X86_TIMEX_H | ||
|
||
#include <asm/processor.h> | ||
#include <asm/tsc.h> | ||
|
||
#ifdef CONFIG_X86_ELAN | ||
# define PIT_TICK_RATE 1189200 /* AMD Elan has different frequency! */ | ||
#else | ||
# include "timex_64.h" | ||
# define PIT_TICK_RATE 1193182 /* Underlying HZ */ | ||
#endif | ||
#define CLOCK_TICK_RATE PIT_TICK_RATE | ||
|
||
extern int read_current_timer(unsigned long *timer_value); | ||
#define ARCH_HAS_READ_CURRENT_TIMER 1 | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters