aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2019-10-24 10:29:34 +0800
committerMiquel Raynal <miquel.raynal@bootlin.com>2019-10-29 14:40:42 +0100
commit21777bc90427dd396e17377f2eed46fcc9c9989e (patch)
treefb95610d587d277380d62d5e1db50227e83e7667 /drivers/mtd/nand
parentmtd: rawnand: brcmnand: Fix NULL pointer assignment (diff)
downloadlinux-dev-21777bc90427dd396e17377f2eed46fcc9c9989e.tar.xz
linux-dev-21777bc90427dd396e17377f2eed46fcc9c9989e.zip
mtd: rawnand: mxic: Remove dev_err() on platform_get_irq() failure
platform_get_irq() will call dev_err() itself on failure, so there is no need for the driver to also do this. This is detected by coccinelle. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/raw/mxic_nand.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mtd/nand/raw/mxic_nand.c b/drivers/mtd/nand/raw/mxic_nand.c
index 9d49e6c845e1..ed7a4e021bf5 100644
--- a/drivers/mtd/nand/raw/mxic_nand.c
+++ b/drivers/mtd/nand/raw/mxic_nand.c
@@ -524,10 +524,8 @@ static int mxic_nfc_probe(struct platform_device *pdev)
nand_chip->controller = &nfc->controller;
irq = platform_get_irq(pdev, 0);
- if (irq < 0) {
- dev_err(&pdev->dev, "failed to retrieve irq\n");
+ if (irq < 0)
return irq;
- }
mxic_nfc_hw_init(nfc);