diff options
author | Dirk Behme <dirk.behme@googlemail.com> | 2009-08-08 09:30:21 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-08 11:33:23 +0200 |
commit | 97a099eaa48d5c762c4f73c52c3090c513b8b877 (patch) | |
tree | 625ee27bb2ad928ef01e68ad8d7fa2e92b2c60bb /cpu/arm_cortexa8/omap3/timer.c | |
parent | 187af954cf7958c24efcf0fd62289bbdb4f1f24e (diff) |
omap3: remove typedefs for configuration structs
Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'cpu/arm_cortexa8/omap3/timer.c')
-rw-r--r-- | cpu/arm_cortexa8/omap3/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/arm_cortexa8/omap3/timer.c b/cpu/arm_cortexa8/omap3/timer.c index 05cfe763aa..12a16b3210 100644 --- a/cpu/arm_cortexa8/omap3/timer.c +++ b/cpu/arm_cortexa8/omap3/timer.c @@ -37,7 +37,7 @@ static ulong timestamp; static ulong lastinc; -static gptimer_t *timer_base = (gptimer_t *)CONFIG_SYS_TIMERBASE; +static struct gptimer *timer_base = (struct gptimer *)CONFIG_SYS_TIMERBASE; /* * Nothing really to do with interrupts, just starts up a counter. |