diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-11-19 18:41:20 -0500 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-01-02 13:07:43 -0500 |
commit | ae278a935f086775e8ae31a8ec9f7224ea25ea3c (patch) | |
tree | efd3d6d7c29271af8acb283b2cc8ffd6dc39570b /include/asm-generic/vmlinux.lds.h | |
parent | 6bb27d7349db51b50c40534710fe164ca0d58902 (diff) |
clocksource: add common of_clksrc_init() function
It is desirable to move all clocksource drivers to drivers/clocksource,
yet each requires its own initialization function. We'd rather not
pollute <linux/> with a header for each function. Instead, create a
single of_clksrc_init() function which will determine which clocksource
driver to initialize based on device tree.
Based on a similar patch for drivers/irqchip by Thomas Petazzoni.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'include/asm-generic/vmlinux.lds.h')
-rw-r--r-- | include/asm-generic/vmlinux.lds.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index d1ea7ce0b4cb..1e744c5a0ffe 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
@@ -149,6 +149,14 @@ | |||
149 | #define TRACE_SYSCALLS() | 149 | #define TRACE_SYSCALLS() |
150 | #endif | 150 | #endif |
151 | 151 | ||
152 | #ifdef CONFIG_CLKSRC_OF | ||
153 | #define CLKSRC_OF_TABLES() . = ALIGN(8); \ | ||
154 | VMLINUX_SYMBOL(__clksrc_of_table) = .; \ | ||
155 | *(__clksrc_of_table) \ | ||
156 | *(__clksrc_of_table_end) | ||
157 | #else | ||
158 | #define CLKSRC_OF_TABLES() | ||
159 | #endif | ||
152 | 160 | ||
153 | #define KERNEL_DTB() \ | 161 | #define KERNEL_DTB() \ |
154 | STRUCT_ALIGN(); \ | 162 | STRUCT_ALIGN(); \ |
@@ -493,6 +501,7 @@ | |||
493 | DEV_DISCARD(init.rodata) \ | 501 | DEV_DISCARD(init.rodata) \ |
494 | CPU_DISCARD(init.rodata) \ | 502 | CPU_DISCARD(init.rodata) \ |
495 | MEM_DISCARD(init.rodata) \ | 503 | MEM_DISCARD(init.rodata) \ |
504 | CLKSRC_OF_TABLES() \ | ||
496 | KERNEL_DTB() | 505 | KERNEL_DTB() |
497 | 506 | ||
498 | #define INIT_TEXT \ | 507 | #define INIT_TEXT \ |