]> Pileus Git - ~andy/linux/blob - drivers/clk/clk-nomadik.c
Merge tag 's3c24xx-dt-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux...
[~andy/linux] / drivers / clk / clk-nomadik.c
1 #include <linux/clk.h>
2 #include <linux/clkdev.h>
3 #include <linux/err.h>
4 #include <linux/io.h>
5 #include <linux/clk-provider.h>
6 #include <linux/of.h>
7
8 /*
9  * The Nomadik clock tree is described in the STN8815A12 DB V4.2
10  * reference manual for the chip, page 94 ff.
11  */
12
13 static const __initconst struct of_device_id cpu8815_clk_match[] = {
14         { .compatible = "fixed-clock", .data = of_fixed_clk_setup, },
15         { /* sentinel */ }
16 };
17
18 void __init nomadik_clk_init(void)
19 {
20         of_clk_init(cpu8815_clk_match);
21 }