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

Commit a5861b7c authored by Taniya Das's avatar Taniya Das Committed by Gerrit - the friendly Code Review server
Browse files

mailbox: qcom: Update the ioremap_resource for APCS



The APCS region being requested by mailbox driver would be used and
associated by the CPU PLL driver. Moving to use normal ioremap.

Change-Id: I88c2b61f02708f0175bc7da3aa195e23fcc3273e
Signed-off-by: default avatarTaniya Das <tdas@codeaurora.org>
parent a60934ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ static int qcom_apcs_ipc_probe(struct platform_device *pdev)
		return -ENOMEM;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	base = devm_ioremap_resource(&pdev->dev, res);
	base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
	if (IS_ERR(base))
		return PTR_ERR(base);