aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXu Wang <[email protected]>2020-09-21 03:45:22 +0000
committerStephen Boyd <[email protected]>2020-10-13 19:54:30 -0700
commiteff06bd5e5f63b14ea1ad97fbb07bd41d92d323d (patch)
treeebf34850108f94ce244b0fb515dde82d1068c131
parent9123e3a74ec7b934a4a099e98af6a61c2f80bbf5 (diff)
clk: clk-prima2: fix return value check in prima2_clk_init()
In case of error, the function clk_register() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Xu Wang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: Barry Song <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r--drivers/clk/sirf/clk-prima2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sirf/clk-prima2.c b/drivers/clk/sirf/clk-prima2.c
index 45dcbc9e0302..d17b345f4d2d 100644
--- a/drivers/clk/sirf/clk-prima2.c
+++ b/drivers/clk/sirf/clk-prima2.c
@@ -134,7 +134,7 @@ static void __init prima2_clk_init(struct device_node *np)
for (i = pll1; i < maxclk; i++) {
prima2_clks[i] = clk_register(NULL, prima2_clk_hw_array[i]);
- BUG_ON(!prima2_clks[i]);
+ BUG_ON(IS_ERR(prima2_clks[i]));
}
clk_register_clkdev(prima2_clks[cpu], NULL, "cpu");
clk_register_clkdev(prima2_clks[io], NULL, "io");