]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/clk/clk-nomadik.c
pinctrl/nomadik: Standardise Pinctrl compat string for Nomadik based platforms
[mirror_ubuntu-artful-kernel.git] / drivers / clk / clk-nomadik.c
CommitLineData
4a31bd28
LW
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>
6e2b07a1 6#include <linux/of.h>
4a31bd28
LW
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
6e2b07a1
LW
13static const __initconst struct of_device_id cpu8815_clk_match[] = {
14 { .compatible = "fixed-clock", .data = of_fixed_clk_setup, },
15 { /* sentinel */ }
16};
17
4a31bd28
LW
18void __init nomadik_clk_init(void)
19{
6e2b07a1 20 of_clk_init(cpu8815_clk_match);
4a31bd28 21}