aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/clocksource.h
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2013-01-30 10:49:30 -0700
committerOlof Johansson <olof@lixom.net>2013-01-31 19:57:30 -0800
commite1d7ef1cc472de30995a50ecb9c7aa3361f985f9 (patch)
treeeac0288e3b522bf85d46c4ae6af010264e42a562 /include/linux/clocksource.h
parentARM: imx: fix imx31-dt.c time-related warning (diff)
downloadlinux-dev-e1d7ef1cc472de30995a50ecb9c7aa3361f985f9.tar.xz
linux-dev-e1d7ef1cc472de30995a50ecb9c7aa3361f985f9.zip
clocksource: always define CLOCKSOURCE_OF_DECLARE
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>
Diffstat (limited to 'include/linux/clocksource.h')
-rw-r--r--include/linux/clocksource.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h
index 7944f14ea947..27cfda427dd9 100644
--- a/include/linux/clocksource.h
+++ b/include/linux/clocksource.h
@@ -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 */