mtd: spi: Add a new option SPL_SPI_FLASH_MTD to Kconfig
[oweals/u-boot.git] / drivers / mtd / mtdcore.h
index 7b0353399a10642f44ca4d15994942066693e9b2..1d181a1045b10aa9e2959b6bf84533b4fbe72609 100644 (file)
@@ -5,7 +5,6 @@
 
 extern struct mutex mtd_table_mutex;
 
-struct mtd_info *__mtd_next_device(int i);
 int add_mtd_device(struct mtd_info *mtd);
 int del_mtd_device(struct mtd_info *mtd);
 int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
@@ -16,8 +15,3 @@ int parse_mtd_partitions(struct mtd_info *master, const char * const *types,
 
 int __init init_mtdchar(void);
 void __exit cleanup_mtdchar(void);
-
-#define mtd_for_each_device(mtd)                       \
-       for ((mtd) = __mtd_next_device(0);              \
-            (mtd) != NULL;                             \
-            (mtd) = __mtd_next_device(mtd->index + 1))