aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/mtdcore.h
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2010-01-29 15:59:42 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-02-25 06:55:14 -0500
commitb520e412faaaad35641aeedd6059179f9f1b393c (patch)
treed49554d8972d8e9360155fcda648636be350ceaa /drivers/mtd/mtdcore.h
parent4d1ee80f3a7df7fe9cdec26e651e6201c45b10d4 (diff)
mtd: Replace static array of devices with an idr structure
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/mtdcore.h')
-rw-r--r--drivers/mtd/mtdcore.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/mtd/mtdcore.h b/drivers/mtd/mtdcore.h
index e2f93a300738..6a64fdebc898 100644
--- a/drivers/mtd/mtdcore.h
+++ b/drivers/mtd/mtdcore.h
@@ -8,17 +8,7 @@
8 should not use them for _anything_ else */ 8 should not use them for _anything_ else */
9 9
10extern struct mutex mtd_table_mutex; 10extern struct mutex mtd_table_mutex;
11extern struct mtd_info *mtd_table[MAX_MTD_DEVICES]; 11extern struct mtd_info *__mtd_next_device(int i);
12
13static inline struct mtd_info *__mtd_next_device(int i)
14{
15 while (i < MAX_MTD_DEVICES) {
16 if (mtd_table[i])
17 return mtd_table[i];
18 i++;
19 }
20 return NULL;
21}
22 12
23#define mtd_for_each_device(mtd) \ 13#define mtd_for_each_device(mtd) \
24 for ((mtd) = __mtd_next_device(0); \ 14 for ((mtd) = __mtd_next_device(0); \