mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
remoteproc/omap: fix dev_err typo
commit 6b03976288
upstream.
For some reason one of the dev_err invocations is using a wrong
device so fix that.
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
eef458cb6f
commit
efe79381e4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue