diff options
author | David Lechner <david@lechnology.com> | 2018-03-15 21:52:21 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-03-20 10:16:26 -0700 |
commit | dcdd19b269e0de71a60b50516b95b39341a0795a (patch) | |
tree | 06d9282d5b0952291994e7858ad31fa6bb735d62 /drivers/clk/davinci/pll.c | |
parent | 55b3caed2bf6edd5d44ccae92ed37cff00951a91 (diff) | |
download | op-kernel-dev-dcdd19b269e0de71a60b50516b95b39341a0795a.zip op-kernel-dev-dcdd19b269e0de71a60b50516b95b39341a0795a.tar.gz |
clk: davinci: Add platform information for TI DM355 PLL
This adds platform-specific declarations for the PLL clocks on TI
DM355 based systems.
Signed-off-by: David Lechner <david@lechnology.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/davinci/pll.c')
-rw-r--r-- | drivers/clk/davinci/pll.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/davinci/pll.c b/drivers/clk/davinci/pll.c index 124bbd2..4a506a9 100644 --- a/drivers/clk/davinci/pll.c +++ b/drivers/clk/davinci/pll.c @@ -780,6 +780,8 @@ static const struct platform_device_id davinci_pll_id_table[] = { { .name = "da830-pll", .driver_data = (kernel_ulong_t)da830_pll_init }, { .name = "da850-pll0", .driver_data = (kernel_ulong_t)da850_pll0_init }, { .name = "da850-pll1", .driver_data = (kernel_ulong_t)da850_pll1_init }, + { .name = "dm355-pll1", .driver_data = (kernel_ulong_t)dm355_pll1_init }, + { .name = "dm355-pll2", .driver_data = (kernel_ulong_t)dm355_pll2_init }, { } }; |