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

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

regulator: dbx500: Remove redundant error message



kzalloc prints its own OOM message upon failure.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 38dbfb59
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -202,18 +202,12 @@ ux500_regulator_debug_init(struct platform_device *pdev,
	rdebug.num_regulators = num_regulators;

	rdebug.state_before_suspend = kzalloc(num_regulators, GFP_KERNEL);
	if (!rdebug.state_before_suspend) {
		dev_err(&pdev->dev,
			"could not allocate memory for saving state\n");
	if (!rdebug.state_before_suspend)
		goto exit_destroy_power_state;
	}

	rdebug.state_after_suspend = kzalloc(num_regulators, GFP_KERNEL);
	if (!rdebug.state_after_suspend) {
		dev_err(&pdev->dev,
			"could not allocate memory for saving state\n");
	if (!rdebug.state_after_suspend)
		goto exit_free;
	}

	dbx500_regulator_testcase(regulator_info, num_regulators);
	return 0;