diff --git a/[refs] b/[refs] index 493f60c49ddc..38a899bb2d23 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 36995223872df6642e604aab2be84377a5d12a19 +refs/heads/master: 5c4f5264d503f0650c954a181b0ba255913bb382 diff --git a/trunk/include/asm-m68knommu/timex.h b/trunk/include/asm-m68knommu/timex.h index 85069998db52..109050f3fe91 100644 --- a/trunk/include/asm-m68knommu/timex.h +++ b/trunk/include/asm-m68knommu/timex.h @@ -1 +1,23 @@ -#include +/* + * linux/include/asm-m68knommu/timex.h + * + * m68knommu architecture timex specifications + */ +#ifndef _ASM_M68KNOMMU_TIMEX_H +#define _ASM_M68KNOMMU_TIMEX_H + +#ifdef CONFIG_COLDFIRE +#include +#define CLOCK_TICK_RATE MCF_CLK +#else +#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */ +#endif + +typedef unsigned long cycles_t; + +static inline cycles_t get_cycles(void) +{ + return 0; +} + +#endif