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

Commit 017f4fb7 authored by Wei Yongjun's avatar Wei Yongjun Committed by Mauro Carvalho Chehab
Browse files

[media] bdisp: fix error return code in bdisp_probe()



Fix to return error code -EINVAL from the platform_get_resource() error
handling case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: default avatarFabien Dessenne <fabien.dessenne@st.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent df94121f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1337,6 +1337,7 @@ static int bdisp_probe(struct platform_device *pdev)
	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (!res) {
		dev_err(dev, "failed to get IRQ resource\n");
		ret = -EINVAL;
		goto err_clk;
	}