diff options
Diffstat (limited to 'drivers/mtd/mtdcore.h')
-rw-r--r-- | drivers/mtd/mtdcore.h | 12 |
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 | ||
10 | extern struct mutex mtd_table_mutex; | 10 | extern struct mutex mtd_table_mutex; |
11 | extern struct mtd_info *mtd_table[MAX_MTD_DEVICES]; | 11 | extern struct mtd_info *__mtd_next_device(int i); |
12 | |||
13 | static 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); \ |