mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 21:45:45 +02:00
mtd: rawnand: cafe: Fix a resource leak in the error handling path of 'cafe_nand_probe()'
[ Upstream commit6b430c7595] A successful 'init_rs_non_canonical()' call should be balanced by a corresponding 'free_rs()' call in the error handling path of the probe, as already done in the remove function. Update the error handling path accordingly. Fixes:8c61b7a7f4("[MTD] [NAND] Use rslib for CAFÉ ECC") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/fd313d3fb787458bcc73189e349f481133a2cdc9.1629532640.git.christophe.jaillet@wanadoo.fr Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
5402b31c0c
commit
9da1fb128c
|
|
@ -751,7 +751,7 @@ static int cafe_nand_probe(struct pci_dev *pdev,
|
||||||
"CAFE NAND", mtd);
|
"CAFE NAND", mtd);
|
||||||
if (err) {
|
if (err) {
|
||||||
dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq);
|
dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq);
|
||||||
goto out_ior;
|
goto out_free_rs;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Disable master reset, enable NAND clock */
|
/* Disable master reset, enable NAND clock */
|
||||||
|
|
@ -795,6 +795,8 @@ static int cafe_nand_probe(struct pci_dev *pdev,
|
||||||
/* Disable NAND IRQ in global IRQ mask register */
|
/* Disable NAND IRQ in global IRQ mask register */
|
||||||
cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
|
cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
|
||||||
free_irq(pdev->irq, mtd);
|
free_irq(pdev->irq, mtd);
|
||||||
|
out_free_rs:
|
||||||
|
free_rs(cafe->rs);
|
||||||
out_ior:
|
out_ior:
|
||||||
pci_iounmap(pdev, cafe->mmio);
|
pci_iounmap(pdev, cafe->mmio);
|
||||||
out_free_mtd:
|
out_free_mtd:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user