Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
41099f4e
Commit
41099f4e
authored
Sep 30, 2015
by
danh-arm
Browse files
Merge pull request #401 from sandrine-bailleux/sb/fix-sp804-bug-v2
Bug fix in the SP804 dual timer driver
parents
271b60df
54312877
Changes
1
Show whitespace changes
Inline
Side-by-side
include/drivers/arm/sp804_delay_timer.h
View file @
41099f4e
...
...
@@ -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__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment