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

Commit a642bbbb authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman
Browse files

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: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3eced21a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;
	}