diff options
author | David Lechner <david@lechnology.com> | 2018-03-16 03:52:22 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-03-20 18:16:26 +0100 |
commit | 650bba61fc3611e4a349fb323011fd3e7a228860 (patch) | |
tree | 46ca2b853152f8e3156859d2d28a93a7896fb52d /drivers/clk/davinci/pll.c | |
parent | clk: davinci: Add platform information for TI DM355 PLL (diff) | |
download | linux-650bba61fc3611e4a349fb323011fd3e7a228860.tar.xz linux-650bba61fc3611e4a349fb323011fd3e7a228860.zip |
clk: davinci: Add platform information for TI DM365 PLL
This adds platform-specific declarations for the PLL clocks on TI
DM365 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 4a506a970c52..7e1f6721533a 100644 --- a/drivers/clk/davinci/pll.c +++ b/drivers/clk/davinci/pll.c @@ -782,6 +782,8 @@ static const struct platform_device_id davinci_pll_id_table[] = { { .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 }, + { .name = "dm365-pll1", .driver_data = (kernel_ulong_t)dm365_pll1_init }, + { .name = "dm365-pll2", .driver_data = (kernel_ulong_t)dm365_pll2_init }, { } }; |