mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 17:35:17 +07:00
mtd: rawnand: denali: Delete items from the list in the _remove() path
Denali driver keeps track of devices with a list. Delete items of this list as long as they are not in use anymore. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> Link: https://lore.kernel.org/linux-mtd/20200519130035.1883-11-miquel.raynal@bootlin.com
This commit is contained in:
parent
a9575c48e5
commit
6ac64a1755
@ -1359,10 +1359,12 @@ EXPORT_SYMBOL(denali_init);
|
||||
|
||||
void denali_remove(struct denali_controller *denali)
|
||||
{
|
||||
struct denali_chip *dchip;
|
||||
struct denali_chip *dchip, *tmp;
|
||||
|
||||
list_for_each_entry(dchip, &denali->chips, node)
|
||||
list_for_each_entry_safe(dchip, tmp, &denali->chips, node) {
|
||||
nand_release(&dchip->chip);
|
||||
list_del(&dchip->node);
|
||||
}
|
||||
|
||||
denali_disable_irq(denali);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user