提交 a642bbbb 编写于 作者: A Amitoj Kaur Chawla 提交者: Greg Kroah-Hartman

staging: most: hdm-dim2: Replace pr_err with dev_err

Replace pr_err with dev_err when a appropriate device structure is
present.
Signed-off-by: NAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 3eced21a
......@@ -753,7 +753,7 @@ static int dim2_probe(struct platform_device *pdev)
ret = platform_get_irq(pdev, 0);
if (ret < 0) {
pr_err("failed to get irq\n");
dev_err(&pdev->dev, "failed to get irq\n");
return -ENODEV;
}
dev->irq_ahb0 = ret;
......@@ -761,7 +761,7 @@ static int dim2_probe(struct platform_device *pdev)
ret = devm_request_irq(&pdev->dev, dev->irq_ahb0, dim2_ahb_isr, 0,
"mlb_ahb0", dev);
if (ret) {
pr_err("failed to request IRQ: %d, err: %d\n",
dev_err(&pdev->dev, "failed to request IRQ: %d, err: %d\n",
dev->irq_ahb0, ret);
return ret;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册