提交 cd2863d8 编写于 作者: J Jiasheng Jiang 提交者: Zheng Zengkai

mtd: onenand: Check for error irq

stable inclusion
from stable-v5.10.110
commit 364b2eee6233badedbb3745522c6e5eb5d3a60f3
bugzilla: https://gitee.com/openeuler/kernel/issues/I574AL

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=364b2eee6233badedbb3745522c6e5eb5d3a60f3

--------------------------------

[ Upstream commit 3e68f331 ]

For the possible failure of the platform_get_irq(), the returned irq
could be error number and will finally cause the failure of the
request_irq().
Consider that platform_get_irq() can now in certain cases return
-EPROBE_DEFER, and the consequences of letting request_irq() effectively
convert that into -EINVAL, even at probe time rather than later on.
So it might be better to check just now.

Fixes: 2c22120f ("MTD: OneNAND: interrupt based wait support")
Signed-off-by: NJiasheng Jiang <jiasheng@iscas.ac.cn>
Signed-off-by: NMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20220104162658.1988142-1-jiasheng@iscas.ac.cnSigned-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NYu Liao <liaoyu15@huawei.com>
Reviewed-by: NWei Li <liwei391@huawei.com>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 24ca5ca9
...@@ -53,7 +53,12 @@ static int generic_onenand_probe(struct platform_device *pdev) ...@@ -53,7 +53,12 @@ static int generic_onenand_probe(struct platform_device *pdev)
} }
info->onenand.mmcontrol = pdata ? pdata->mmcontrol : NULL; info->onenand.mmcontrol = pdata ? pdata->mmcontrol : NULL;
info->onenand.irq = platform_get_irq(pdev, 0);
err = platform_get_irq(pdev, 0);
if (err < 0)
goto out_iounmap;
info->onenand.irq = err;
info->mtd.dev.parent = &pdev->dev; info->mtd.dev.parent = &pdev->dev;
info->mtd.priv = &info->onenand; info->mtd.priv = &info->onenand;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册