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

Commit 919054fd authored by Arvind Yadav's avatar Arvind Yadav Committed by Eduardo Valentin
Browse files

thermal: hisilicon: Handle return value of clk_prepare_enable



clk_prepare_enable() can fail here and we must check its return value.

Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
parent e3bdc8d7
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -397,8 +397,11 @@ static int hisi_thermal_suspend(struct device *dev)
static int hisi_thermal_resume(struct device *dev)
{
	struct hisi_thermal_data *data = dev_get_drvdata(dev);
	int ret;

	clk_prepare_enable(data->clk);
	ret = clk_prepare_enable(data->clk);
	if (ret)
		return ret;

	data->irq_enabled = true;
	hisi_thermal_enable_bind_irq_sensor(data);