diff options
author | Yihao Han <hanyihao@vivo.com> | 2022-03-10 01:48:06 -0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-03-10 12:17:56 +0000 |
commit | 2cfdf0b4441aa918c3b18142740c92407b3c35a2 (patch) | |
tree | 0a7b6fb78650adebd2663b66d8d6d5d4ab5ffe3e /drivers/spi/spi-rockchip-sfc.c | |
parent | 87fee8d0911fd8a4e88892aa79c7aeef845d8454 (diff) |
spi: rockchip-sfc: fix platform_get_irq.cocci warning
Remove dev_err() messages after platform_get_irq*() failures.
platform_get_irq() already prints an error.
Generated by: scripts/coccinelle/api/platform_get_irq.cocci
Signed-off-by: Yihao Han <hanyihao@vivo.com>
Link: https://lore.kernel.org/r/20220310094806.13734-1-hanyihao@vivo.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-rockchip-sfc.c')
-rw-r--r-- | drivers/spi/spi-rockchip-sfc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/spi-rockchip-sfc.c b/drivers/spi/spi-rockchip-sfc.c index a46b38544027..bd87d3c92dd3 100644 --- a/drivers/spi/spi-rockchip-sfc.c +++ b/drivers/spi/spi-rockchip-sfc.c @@ -624,10 +624,8 @@ static int rockchip_sfc_probe(struct platform_device *pdev) /* Find the irq */ ret = platform_get_irq(pdev, 0); - if (ret < 0) { - dev_err(dev, "Failed to get the irq\n"); + if (ret < 0) goto err_irq; - } ret = devm_request_irq(dev, ret, rockchip_sfc_irq_handler, 0, pdev->name, sfc); |