Commit 32fd0989 authored by Ruan Jinjie's avatar Ruan Jinjie Committed by Greg Kroah-Hartman
Browse files

misc: hi6421-spmi-pmic: Remove redundant dev_err()



There is no need to call the dev_err() function directly to print a custom
message when handling an error from the platform_get_irq() function as it
is going to display an appropriate error message in case of a failure.

Signed-off-by: default avatarRuan Jinjie <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230726180707.2486808-1-ruanjinjie@huawei.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d9c58aeb
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -244,10 +244,8 @@ static int hi6421v600_irq_probe(struct platform_device *pdev)
	pmic_pdev = container_of(pmic_dev, struct platform_device, dev);

	priv->irq = platform_get_irq(pmic_pdev, 0);
	if (priv->irq < 0) {
		dev_err(dev, "Error %d when getting IRQs\n", priv->irq);
	if (priv->irq < 0)
		return priv->irq;
	}

	platform_set_drvdata(pdev, priv);