Skip to content

Commit

Permalink
clocksource: always define CLOCKSOURCE_OF_DECLARE
Browse files Browse the repository at this point in the history
This allows clocksource drivers that support both DT and non-DT to
always invoke macro CLOCKSOURCE_OF_DECLARE(), rather than wrapping
it in a #ifdef CONFIG_CLKSRC_OF, which simplifies their code.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Stephen Warren authored and Olof Johansson committed Feb 1, 2013
1 parent 80debae commit e1d7ef1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/linux/clocksource.h
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,8 @@ extern void clocksource_of_init(void);
static const struct of_device_id __clksrc_of_table_##name \
__used __section(__clksrc_of_table) \
= { .compatible = compat, .data = fn };
#else
#define CLOCKSOURCE_OF_DECLARE(name, compat, fn)
#endif

#endif /* _LINUX_CLOCKSOURCE_H */

0 comments on commit e1d7ef1

Please sign in to comment.