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

Commit c76929b3 authored by Himanshu Jha's avatar Himanshu Jha Committed by Bjorn Andersson
Browse files

remoteproc: qcom: Use PTR_ERR_OR_ZERO



Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Signed-off-by: default avatarHimanshu Jha <himanshujha199640@gmail.com>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent 1e13c7fb
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -268,10 +268,7 @@ static int adsp_init_regulator(struct qcom_adsp *adsp)
	regulator_set_load(adsp->cx_supply, 100000);

	adsp->px_supply = devm_regulator_get(adsp->dev, "px");
	if (IS_ERR(adsp->px_supply))
		return PTR_ERR(adsp->px_supply);

	return 0;
	return PTR_ERR_OR_ZERO(adsp->px_supply);
}

static int adsp_request_irq(struct qcom_adsp *adsp,
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ static int smd_subdev_probe(struct rproc_subdev *subdev)

	smd->edge = qcom_smd_register_edge(smd->dev, smd->node);

	return IS_ERR(smd->edge) ? PTR_ERR(smd->edge) : 0;
	return PTR_ERR_OR_ZERO(smd->edge);
}

static void smd_subdev_remove(struct rproc_subdev *subdev)