diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-05 07:52:03 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-17 03:28:44 +0400 |
commit | cab87f062d0c57c9734257e4079ced489a3189b1 (patch) | |
tree | c8229c08b3a7caacfdf285f4d407664bc749ac87 /drivers/regulator/max8997.c | |
parent | 42141f22e32a452b02b3dc8764d93223505e1c10 (diff) | |
download | linux-cab87f062d0c57c9734257e4079ced489a3189b1.tar.xz |
regulator: Remove redundant NULL assignment
NULL assignment corrupts the error pointer and is not
necessary.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/max8997.c')
-rw-r--r-- | drivers/regulator/max8997.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/regulator/max8997.c b/drivers/regulator/max8997.c index 059e8ed7fa24..bcd2488d1252 100644 --- a/drivers/regulator/max8997.c +++ b/drivers/regulator/max8997.c @@ -1209,7 +1209,6 @@ static int max8997_pmic_probe(struct platform_device *pdev) if (IS_ERR(rdev[i])) { dev_err(max8997->dev, "regulator init failed for %d\n", id); - rdev[i] = NULL; return PTR_ERR(rdev[i]); } } |