aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/mtdcore.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index 4c102f123463..8c61035b968b 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -112,12 +112,11 @@ int del_mtd_device (struct mtd_info *mtd)
112 mtd->index, mtd->name, mtd->usecount); 112 mtd->index, mtd->name, mtd->usecount);
113 ret = -EBUSY; 113 ret = -EBUSY;
114 } else { 114 } else {
115 struct list_head *this; 115 struct mtd_notifier *not;
116 116
117 /* No need to get a refcount on the module containing 117 /* No need to get a refcount on the module containing
118 the notifier, since we hold the mtd_table_mutex */ 118 the notifier, since we hold the mtd_table_mutex */
119 list_for_each(this, &mtd_notifiers) { 119 list_for_each_entry(not, &mtd_notifiers, list) {
120 struct mtd_notifier *not = list_entry(this, struct mtd_notifier, list);
121 not->remove(mtd); 120 not->remove(mtd);
122 } 121 }
123 122