diff options
author | gushengxian <gushengxian@yulong.com> | 2021-06-22 04:55:07 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-06-24 18:49:01 -0600 |
commit | 1af11d098db18bfda5168dc407513726e1b1bdb3 (patch) | |
tree | 0d25f8159caa51bcc57d67091ad11c46dbacc304 /drivers/ata | |
parent | b7fb14d3ac63117e0e8beabe75f4ea52051fbe3a (diff) | |
download | linux-1af11d098db18bfda5168dc407513726e1b1bdb3.tar.bz2 |
ata: rb532_cf: remove redundant codes
The codes "dev_err(&pdev->dev, "no IRQ resource found\n");" is
redundant because platform_get_irq() already prints an error.
Signed-off-by: gushengxian <gushengxian@yulong.com>
Link: https://lore.kernel.org/r/20210622115507.359017-1-13145886936@163.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_rb532_cf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ata/pata_rb532_cf.c b/drivers/ata/pata_rb532_cf.c index 303f8c375b3a..2e110aefe59b 100644 --- a/drivers/ata/pata_rb532_cf.c +++ b/drivers/ata/pata_rb532_cf.c @@ -115,10 +115,8 @@ static int rb532_pata_driver_probe(struct platform_device *pdev) } irq = platform_get_irq(pdev, 0); - if (irq < 0) { - dev_err(&pdev->dev, "no IRQ resource found\n"); + if (irq < 0) return irq; - } if (!irq) return -EINVAL; |