Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cab87f06 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mark Brown
Browse files

regulator: Remove redundant NULL assignment



NULL assignment corrupts the error pointer and is not
necessary.

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 42141f22
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -483,7 +483,6 @@ static int max77686_pmic_probe(struct platform_device *pdev)
		if (IS_ERR(max77686->rdev[i])) {
			dev_err(&pdev->dev,
				"regulator init failed for %d\n", i);
			max77686->rdev[i] = NULL;
			return PTR_ERR(max77686->rdev[i]);
		}
	}
+0 −1
Original line number Diff line number Diff line
@@ -271,7 +271,6 @@ static int max77693_pmic_probe(struct platform_device *pdev)
		if (IS_ERR(max77693_pmic->rdev[i])) {
			dev_err(max77693_pmic->dev,
				"Failed to initialize regulator-%d\n", id);
			max77693_pmic->rdev[i] = NULL;
			return PTR_ERR(max77693_pmic->rdev[i]);
		}
	}
+0 −1
Original line number Diff line number Diff line
@@ -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]);
		}
	}