mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
mtd: rawnand: tegra: add missing check for platform_get_irq()
[ Upstream commit 0a1166c27d4e53186e6bf9147ea6db9cd1d65847 ]
Add the missing check for platform_get_irq() and return error code
if it fails.
Fixes: d7d9f8ec77 ("mtd: rawnand: add NVIDIA Tegra NAND Flash controller driver")
Signed-off-by: Yi Yang <yiyang13@huawei.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20230821084046.217025-1-yiyang13@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1fb3a9c59e
commit
2fa178e2cd
@@ -1197,6 +1197,10 @@ static int tegra_nand_probe(struct platform_device *pdev)
|
||||
init_completion(&ctrl->dma_complete);
|
||||
|
||||
ctrl->irq = platform_get_irq(pdev, 0);
|
||||
if (ctrl->irq < 0) {
|
||||
err = ctrl->irq;
|
||||
goto err_put_pm;
|
||||
}
|
||||
err = devm_request_irq(&pdev->dev, ctrl->irq, tegra_nand_irq, 0,
|
||||
dev_name(&pdev->dev), ctrl);
|
||||
if (err) {
|
||||
|
||||
Reference in New Issue
Block a user