diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2020-04-16 11:13:48 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-05-05 22:13:12 +0300 |
commit | 24661081ba00b69a0d77b15d2a194cb172894956 (patch) | |
tree | 52147927f38bb294349b232d6cc1248735ba95e4 /drivers/clk | |
parent | 018d4671b9bbd4a5c55cf6eab3e1dbc70a50b66e (diff) | |
download | linux-24661081ba00b69a0d77b15d2a194cb172894956.tar.xz |
clk: impd1: Look up clock-output-names
The IM-PD1 still need to pass the clock output names.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lkml.kernel.org/r/20200416081348.326833-1-linus.walleij@linaro.org
Fixes: 84655b762a27 ("clk: versatile: Add device tree probing for IM-PD1 clocks")
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/versatile/clk-impd1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/versatile/clk-impd1.c b/drivers/clk/versatile/clk-impd1.c index b05da8516d4c..f9f4babe3ca6 100644 --- a/drivers/clk/versatile/clk-impd1.c +++ b/drivers/clk/versatile/clk-impd1.c @@ -206,6 +206,7 @@ static int integrator_impd1_clk_spawn(struct device *dev, return -ENODEV; } + of_property_read_string(np, "clock-output-names", &name); parent_name = of_clk_get_parent_name(np, 0); clk = icst_clk_setup(NULL, desc, name, parent_name, map, ICST_INTEGRATOR_IM_PD1); |