diff options
author | Sascha Hauer | 2008-12-18 11:24:03 +0100 |
---|---|---|
committer | Sascha Hauer | 2008-12-18 16:40:12 +0100 |
commit | 44421e42587125acf70771436bcd6af06e1261a3 (patch) | |
tree | d7c5e1a758883cdad50e14244e388c7f2b57dc31 /arch/arm/plat-mxc/include/mach/timex.h | |
parent | 9d631b835f518848b7f3ce803bfd00dc1bb8a5b1 (diff) |
[ARM] MXC: do not include mach/hardware.h from mach/timex.h
Instead of including other header files, define CLOCK_TICK_RATE directly
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/include/mach/timex.h')
-rw-r--r-- | arch/arm/plat-mxc/include/mach/timex.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/include/mach/timex.h b/arch/arm/plat-mxc/include/mach/timex.h index 0b0af0253e91..07b4a73c9d2f 100644 --- a/arch/arm/plat-mxc/include/mach/timex.h +++ b/arch/arm/plat-mxc/include/mach/timex.h @@ -20,6 +20,12 @@ #ifndef __ASM_ARCH_MXC_TIMEX_H__ #define __ASM_ARCH_MXC_TIMEX_H__ -#include <mach/hardware.h> /* for CLOCK_TICK_RATE */ +#if defined CONFIG_ARCH_MX1 +#define CLOCK_TICK_RATE 16000000 +#elif defined CONFIG_ARCH_MX2 +#define CLOCK_TICK_RATE 13300000 +#elif defined CONFIG_ARCH_MX3 +#define CLOCK_TICK_RATE 16625000 +#endif #endif /* __ASM_ARCH_MXC_TIMEX_H__ */ |