From 3fafc8e5c702828b783f6b66bccfd5c40db98fd9 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 29 Apr 2014 08:05:15 +0200 Subject: mtd: nand-bb: use list_for_each_entry_safe We need list_for_each_entry_safe in dev_remove_bb_dev since the list entries are removed during iteration over the list. Signed-off-by: Sascha Hauer Reported-by: Alexander Aring --- drivers/mtd/nand/nand-bb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mtd/nand/nand-bb.c b/drivers/mtd/nand/nand-bb.c index f387ef687a..89d5945998 100644 --- a/drivers/mtd/nand/nand-bb.c +++ b/drivers/mtd/nand/nand-bb.c @@ -308,9 +308,9 @@ out1: int dev_remove_bb_dev(const char *name) { - struct nand_bb *bb; + struct nand_bb *bb, *tmp; - list_for_each_entry(bb, &bb_list, list) { + list_for_each_entry_safe(bb, tmp, &bb_list, list) { if (!strcmp(bb->cdev.name, name)) { devfs_remove(&bb->cdev); cdev_close(bb->cdev_parent); -- cgit v1.2.3