Commit 51839e25 authored by Xu Wang's avatar Xu Wang Committed by Damien Le Moal

ata: sata_highbank: Remove unnecessary print function dev_err()

The print function dev_err() is redundant because
platform_get_irq() already prints an error.
Signed-off-by: default avatarXu Wang <vulab@iscas.ac.cn>
Signed-off-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
parent 68dbbe7d
...@@ -469,10 +469,8 @@ static int ahci_highbank_probe(struct platform_device *pdev) ...@@ -469,10 +469,8 @@ static int ahci_highbank_probe(struct platform_device *pdev)
} }
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq < 0) { if (irq < 0)
dev_err(dev, "no irq\n");
return irq; return irq;
}
if (!irq) if (!irq)
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment