Skip to content

Commit

Permalink
clk: max77686: Fix return value checking for devm_kzalloc
Browse files Browse the repository at this point in the history
devm_kzalloc returns NULL on failure.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
  • Loading branch information
Axel Lin authored and Mike Turquette committed Jan 12, 2013
1 parent bab5330 commit 9f58b9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/clk/clk-max77686.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static int max77686_clk_register(struct device *dev,

max77686->lookup = devm_kzalloc(dev, sizeof(struct clk_lookup),
GFP_KERNEL);
if (IS_ERR(max77686->lookup))
if (!max77686->lookup)
return -ENOMEM;

max77686->lookup->con_id = hw->init->name;
Expand All @@ -151,13 +151,13 @@ static int max77686_clk_probe(struct platform_device *pdev)

max77686_clks = devm_kzalloc(&pdev->dev, sizeof(struct max77686_clk *)
* MAX77686_CLKS_NUM, GFP_KERNEL);
if (IS_ERR(max77686_clks))
if (!max77686_clks)
return -ENOMEM;

for (i = 0; i < MAX77686_CLKS_NUM; i++) {
max77686_clks[i] = devm_kzalloc(&pdev->dev,
sizeof(struct max77686_clk), GFP_KERNEL);
if (IS_ERR(max77686_clks[i]))
if (!max77686_clks[i])
return -ENOMEM;
}

Expand Down

0 comments on commit 9f58b9b

Please sign in to comment.