Merge pull request #401 from sandrine-bailleux/sb/fix-sp804-bug-v2

Bug fix in the SP804 dual timer driver
This commit is contained in:
danh-arm 2015-09-30 15:18:15 +01:00
commit 41099f4e74
1 changed files with 8 additions and 3 deletions

View File

@ -40,8 +40,13 @@ uint32_t sp804_get_timer_value(void);
void sp804_timer_ops_init(uintptr_t base_addr, const timer_ops_t *ops);
#define sp804_timer_init(base_addr, clk_mult, clk_div) \
sp804_timer_ops_init((base_addr), &(const timer_ops_t) \
{ sp804_get_timer_value, (clk_mult), (clk_div) })
do { \
static const timer_ops_t sp804_timer_ops = { \
sp804_get_timer_value, \
(clk_mult), \
(clk_div) \
}; \
sp804_timer_ops_init((base_addr), &sp804_timer_ops); \
} while (0)
#endif /* __SP804_DELAY_TIMER_H__ */