GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / mtd / mtdcore.h
blob6a64fdebc898f04a0ff250c698509c77fc6a54f5
1 /* linux/drivers/mtd/mtdcore.h
3 * Header file for driver private mtdcore exports
5 */
7 /* These are exported solely for the purpose of mtd_blkdevs.c. You
8 should not use them for _anything_ else */
10 extern struct mutex mtd_table_mutex;
11 extern struct mtd_info *__mtd_next_device(int i);
13 #define mtd_for_each_device(mtd) \
14 for ((mtd) = __mtd_next_device(0); \
15 (mtd) != NULL; \
16 (mtd) = __mtd_next_device(mtd->index + 1))