diff options
author | David Lechner <david@lechnology.com> | 2018-03-16 05:52:23 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-03-20 20:16:26 +0300 |
commit | d67c13eaf79b35bedb1e0bc405416afa3bd6ee04 (patch) | |
tree | 013f3f3cdd3522c91dd0300470c11ce1338171a1 /drivers/clk/davinci/pll.c | |
parent | 650bba61fc3611e4a349fb323011fd3e7a228860 (diff) | |
download | linux-d67c13eaf79b35bedb1e0bc405416afa3bd6ee04.tar.xz |
clk: davinci: Add platform information for TI DM644x PLL
This adds platform-specific declarations for the PLL clocks on TI
DM644x 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 7e1f6721533a..4f86f35a70fd 100644 --- a/drivers/clk/davinci/pll.c +++ b/drivers/clk/davinci/pll.c @@ -784,6 +784,8 @@ static const struct platform_device_id davinci_pll_id_table[] = { { .name = "dm355-pll2", .driver_data = (kernel_ulong_t)dm355_pll2_init }, { .name = "dm365-pll1", .driver_data = (kernel_ulong_t)dm365_pll1_init }, { .name = "dm365-pll2", .driver_data = (kernel_ulong_t)dm365_pll2_init }, + { .name = "dm644x-pll1", .driver_data = (kernel_ulong_t)dm644x_pll1_init }, + { .name = "dm644x-pll2", .driver_data = (kernel_ulong_t)dm644x_pll2_init }, { } }; |