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

Commit bd4760ca authored by Wei Yongjun's avatar Wei Yongjun Committed by Andy Gross
Browse files

firmware: qcom: scm: Use devm_reset_controller_register()



Use devm_reset_controller_register() for the reset controller
registration and fixes the memory leak when unload the module.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarAndy Gross <andy.gross@linaro.org>
parent 4fb1a420
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -356,7 +356,9 @@ static int qcom_scm_probe(struct platform_device *pdev)
	scm->reset.ops = &qcom_scm_pas_reset_ops;
	scm->reset.nr_resets = 1;
	scm->reset.of_node = pdev->dev.of_node;
	reset_controller_register(&scm->reset);
	ret = devm_reset_controller_register(&pdev->dev, &scm->reset);
	if (ret)
		return ret;

	/* vote for max clk rate for highest performance */
	ret = clk_set_rate(scm->core_clk, INT_MAX);