mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
mtd: rawnand: oxnas: Release all devices in the _remove() path
commit0a5f45e57eupstream. oxnans_nand_remove() should release all MTD devices and clean all NAND devices, not only the first one registered. Fixes:6685924924("mtd: nand: Add OX820 NAND Support") Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20200519130035.1883-39-miquel.raynal@bootlin.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
68609f64fc
commit
b0f5383a46
|
|
@ -184,9 +184,13 @@ static int oxnas_nand_probe(struct platform_device *pdev)
|
|||
static int oxnas_nand_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct oxnas_nand_ctrl *oxnas = platform_get_drvdata(pdev);
|
||||
struct nand_chip *chip;
|
||||
int i;
|
||||
|
||||
if (oxnas->chips[0])
|
||||
nand_release(oxnas->chips[0]);
|
||||
for (i = 0; i < oxnas->nchips; i++) {
|
||||
chip = oxnas->chips[i];
|
||||
nand_release(chip);
|
||||
}
|
||||
|
||||
clk_disable_unprepare(oxnas->clk);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user