diff options
Diffstat (limited to 'arch/arm/cpu/arm920t/at91/timer.c')
| -rw-r--r-- | arch/arm/cpu/arm920t/at91/timer.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/arch/arm/cpu/arm920t/at91/timer.c b/arch/arm/cpu/arm920t/at91/timer.c index d9a024fc0..f0ad7d637 100644 --- a/arch/arm/cpu/arm920t/at91/timer.c +++ b/arch/arm/cpu/arm920t/at91/timer.c @@ -32,7 +32,7 @@  #include <common.h> -#include <asm/arch/io.h> +#include <asm/io.h>  #include <asm/arch/hardware.h>  #include <asm/arch/at91_tc.h>  #include <asm/arch/at91_pmc.h> @@ -44,11 +44,11 @@ DECLARE_GLOBAL_DATA_PTR;  int timer_init(void)  { -	at91_tc_t *tc = (at91_tc_t *) AT91_TC_BASE; -	at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE; +	at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC; +	at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;  	/* enables TC1.0 clock */ -	writel(1 << AT91_ID_TC0, &pmc->pcer);	/* enable clock */ +	writel(1 << ATMEL_ID_TC0, &pmc->pcer);	/* enable clock */  	writel(0, &tc->bcr);  	writel(AT91_TC_BMR_TC0XC0S_NONE | AT91_TC_BMR_TC1XC1S_NONE | @@ -96,14 +96,14 @@ void __udelay(unsigned long usec)  void reset_timer_masked(void)  {  	/* reset time */ -	at91_tc_t *tc = (at91_tc_t *) AT91_TC_BASE; +	at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;  	gd->lastinc = readl(&tc->tc[0].cv) & 0x0000ffff;  	gd->tbl = 0;  }  ulong get_timer_raw(void)  { -	at91_tc_t *tc = (at91_tc_t *) AT91_TC_BASE; +	at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;  	u32 now;  	now = readl(&tc->tc[0].cv) & 0x0000ffff; |