diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-10-17 00:11:14 +0900 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-10-17 15:20:50 -0700 |
commit | 8236d9ac4cf2e51e4355c411612cfbaec8d31942 (patch) | |
tree | b431de6e04f64d7d42e45ccf99371fb8de8944d7 /drivers/clk/uniphier | |
parent | 1001354ca34179f3db924eb66672442a173147dc (diff) | |
download | linux-8236d9ac4cf2e51e4355c411612cfbaec8d31942.tar.bz2 |
clk: uniphier: add system clock support for sLD3 SoC
I do not know why, but I missed to add this compatible string in
the initial commit of this driver.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/uniphier')
-rw-r--r-- | drivers/clk/uniphier/clk-uniphier-core.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/clk/uniphier/clk-uniphier-core.c b/drivers/clk/uniphier/clk-uniphier-core.c index 5ffb898d0839..f4e0f6be5f33 100644 --- a/drivers/clk/uniphier/clk-uniphier-core.c +++ b/drivers/clk/uniphier/clk-uniphier-core.c @@ -111,6 +111,10 @@ static int uniphier_clk_remove(struct platform_device *pdev) static const struct of_device_id uniphier_clk_match[] = { /* System clock */ { + .compatible = "socionext,uniphier-sld3-clock", + .data = uniphier_sld3_sys_clk_data, + }, + { .compatible = "socionext,uniphier-ld4-clock", .data = uniphier_ld4_sys_clk_data, }, |