diff options
author | matthias@kaehlcke.net <matthias@kaehlcke.net> | 2008-05-31 09:28:10 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-06-04 12:34:48 -0400 |
commit | 856613c98c2f864994d5fb33a62b7a468f68ab9b (patch) | |
tree | a1e7a9ce48cbf3b49a7a697d6ba78359c7044e1f /drivers/mtd | |
parent | 2606c79759e83fd8b1e45bc99b10e65a1dcf1602 (diff) |
[MTD] use list_for_each_entry() in del_mtd_device()
Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/mtdcore.c | 5 |
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 | ||