diff options
-rw-r--r-- | drivers/clk/clk-conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-conf.c b/drivers/clk/clk-conf.c index 1f73019a27c..4e1bda7abc8 100644 --- a/drivers/clk/clk-conf.c +++ b/drivers/clk/clk-conf.c @@ -55,10 +55,10 @@ static int __set_clk_parents(struct device_node *node, bool clk_supplier) goto err; } clk = of_clk_get_by_clkspec(&clkspec); - if (IS_ERR(pclk)) { + if (IS_ERR(clk)) { pr_warn("clk: couldn't get parent clock %d for %s\n", index, node->full_name); - rc = PTR_ERR(pclk); + rc = PTR_ERR(clk); goto err; } |