OSDN Git Service

clk: at91: fix check of clk_register() returned value
authorVladimir Zapolskiy <vz@mleia.com>
Mon, 7 Mar 2016 23:41:29 +0000 (01:41 +0200)
committerStephen Boyd <sboyd@codeaurora.org>
Fri, 15 Apr 2016 23:57:09 +0000 (16:57 -0700)
The clk_register() function returns a valid pointer to struct clk or
ERR_PTR() error code, this makes a check for returned NULL value
useless and may lead to oops on error path.

Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Fixes: bcc5fd49a0fd ("clk: at91: add a driver for the h32mx clock")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/at91/clk-h32mx.c

index 819f584..8e20c8a 100644 (file)
@@ -114,7 +114,7 @@ static void __init of_sama5d4_clk_h32mx_setup(struct device_node *np)
        h32mxclk->regmap = regmap;
 
        clk = clk_register(NULL, &h32mxclk->hw);
-       if (!clk) {
+       if (IS_ERR(clk)) {
                kfree(h32mxclk);
                return;
        }