diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-05-11 08:44:27 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-05-11 08:44:31 -0400 |
| commit | 41fb454ebe6024f5c1e3b3cbc0abc0da762e7b51 (patch) | |
| tree | 51c50bcb67a5039448ddfa1869d7948cab1217e9 /include/asm-h8300/timer.h | |
| parent | 19c1a6f5764d787113fa323ffb18be7991208f82 (diff) | |
| parent | 091bf7624d1c90cec9e578a18529f615213ff847 (diff) | |
Merge commit 'v2.6.30-rc5' into core/iommu
Merge reason: core/iommu was on an .30-rc1 base,
update it to .30-rc5 to refresh.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-h8300/timer.h')
| -rw-r--r-- | include/asm-h8300/timer.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/asm-h8300/timer.h b/include/asm-h8300/timer.h deleted file mode 100644 index def80464d38f..000000000000 --- a/include/asm-h8300/timer.h +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | #ifndef __H8300_TIMER_H | ||
| 2 | #define __H8300_TIMER_H | ||
| 3 | |||
| 4 | void h8300_timer_tick(void); | ||
| 5 | void h8300_timer_setup(void); | ||
| 6 | void h8300_gettod(unsigned int *year, unsigned int *mon, unsigned int *day, | ||
| 7 | unsigned int *hour, unsigned int *min, unsigned int *sec); | ||
| 8 | |||
| 9 | #define TIMER_FREQ (CONFIG_CPU_CLOCK*10000) /* Timer input freq. */ | ||
| 10 | |||
| 11 | #define calc_param(cnt, div, rate, limit) \ | ||
| 12 | do { \ | ||
| 13 | cnt = TIMER_FREQ / HZ; \ | ||
| 14 | for (div = 0; div < ARRAY_SIZE(divide_rate); div++) { \ | ||
| 15 | if (rate[div] == 0) \ | ||
| 16 | continue; \ | ||
| 17 | if ((cnt / rate[div]) > limit) \ | ||
| 18 | break; \ | ||
| 19 | } \ | ||
| 20 | if (div == ARRAY_SIZE(divide_rate)) \ | ||
| 21 | panic("Timer counter overflow"); \ | ||
| 22 | cnt /= divide_rate[div]; \ | ||
| 23 | } while(0) | ||
| 24 | |||
| 25 | #endif | ||
