diff options
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/timer.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/firmware/export/timer.h b/firmware/export/timer.h index e36baa1..b758f57 100644 --- a/firmware/export/timer.h +++ b/firmware/export/timer.h @@ -28,12 +28,10 @@ #if defined(CPU_PP) /* Portalplayer chips use a microsecond timer. */ #define TIMER_FREQ 1000000 -#elif defined(CPU_COLDFIRE) - /* timer is based on busclk == cpuclk/2 */ - #define TIMER_FREQ (CPU_FREQ/2) #elif CONFIG_CPU == S3C2440 || CONFIG_CPU == DM320 || CONFIG_CPU == TCC7801 \ || defined(CPU_TCC77X) || CONFIG_CPU == AS3525 || CONFIG_CPU == IMX31L \ - || CONFIG_CPU == JZ4732 || CONFIG_CPU == PNX0101 + || CONFIG_CPU == JZ4732 || CONFIG_CPU == PNX0101 \ + || defined(CPU_COLDFIRE) #include "timer-target.h" #elif defined(SIMULATOR) #define TIMER_FREQ 1000000 |