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

Commit 6b039762 authored by Ohad Ben-Cohen's avatar Ohad Ben-Cohen
Browse files

remoteproc/omap: fix dev_err typo



For some reason one of the dev_err invocations is using a wrong
device so fix that.

Signed-off-by: default avatarOhad Ben-Cohen <ohad@wizery.com>
Cc: stable@vger.kernel.org
parent 30338cf0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ static int __devinit omap_rproc_probe(struct platform_device *pdev)

	ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
	if (ret) {
		dev_err(pdev->dev.parent, "dma_set_coherent_mask: %d\n", ret);
		dev_err(&pdev->dev, "dma_set_coherent_mask: %d\n", ret);
		return ret;
	}