diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-08-30 20:08:42 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-30 15:24:42 +0100 |
commit | e515800b74e80c8d507d52e4703b00138daf75b2 (patch) | |
tree | d488585df417d6cb0d46d4950607a4adf1097395 /drivers/regulator | |
parent | 556dcf903d8a22aa1b3eb743aeffd4849eef2e24 (diff) |
regulator: da9063: Use IS_ERR to check return value of regulator_register()
regulator_register() does not return NULL, it returns ERR_PTR on error.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/da9063-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da9063-regulator.c b/drivers/regulator/da9063-regulator.c index f29e7290cc94..139ad453d773 100644 --- a/drivers/regulator/da9063-regulator.c +++ b/drivers/regulator/da9063-regulator.c @@ -848,7 +848,7 @@ static int da9063_regulator_probe(struct platform_device *pdev) config.of_node = da9063_reg_matches[id].of_node; config.regmap = da9063->regmap; regl->rdev = regulator_register(®l->desc, &config); - if (IS_ERR_OR_NULL(regl->rdev)) { + if (IS_ERR(regl->rdev)) { dev_err(&pdev->dev, "Failed to register %s regulator\n", regl->desc.name); |