diff options
author | Menglong Dong <dong.menglong@zte.com.cn> | 2021-01-12 00:53:11 -0800 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2021-02-12 11:37:37 +0100 |
commit | 0b16cfd9e660f59e396ab5f3af7d49e3677e3f9c (patch) | |
tree | bbc1f3af568f68cb2eb1a50d187e23ae4bd558d1 /drivers/i2c | |
parent | b39ab96aa894e3f4a9a1cdfc070bd8ebefaeb9d8 (diff) | |
download | linux-0b16cfd9e660f59e396ab5f3af7d49e3677e3f9c.tar.bz2 |
i2c: remove redundant error print in stm32f7_i2c_probe
Coccinelle reports a redundant error print in stm32f7_i2c_probe.
As 'platform_get_irq' already prints the error message, error
print here is redundant and can be removed.
Signed-off-by: Menglong Dong <dong.menglong@zte.com.cn>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-stm32f7.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/i2c/busses/i2c-stm32f7.c b/drivers/i2c/busses/i2c-stm32f7.c index 9aa8e65b511e..adba496e1e31 100644 --- a/drivers/i2c/busses/i2c-stm32f7.c +++ b/drivers/i2c/busses/i2c-stm32f7.c @@ -2026,12 +2026,8 @@ static int stm32f7_i2c_probe(struct platform_device *pdev) } irq_error = platform_get_irq(pdev, 1); - if (irq_error <= 0) { - if (irq_error != -EPROBE_DEFER) - dev_err(&pdev->dev, "Failed to get IRQ error: %d\n", - irq_error); + if (irq_error <= 0) return irq_error ? : -ENOENT; - } i2c_dev->wakeup_src = of_property_read_bool(pdev->dev.of_node, "wakeup-source"); |