blob: 488b652ba9e637029706259bcbb311f4a1db4144 [file] [log] [blame]
Artem Bityutskiycb707832013-03-15 13:02:19 +02001/*
Artem Bityutskiy660685d2013-03-14 13:27:40 +02002 * These are exported solely for the purpose of mtd_blkdevs.c and mtdchar.c.
3 * You should not use them for _anything_ else.
Ben Dooks356d70f2007-05-28 20:28:34 +01004 */
5
Ben Dooks356d70f2007-05-28 20:28:34 +01006extern struct mutex mtd_table_mutex;
Ben Hutchingsf1332ba2010-01-29 20:57:11 +00007
Artem Bityutskiycb707832013-03-15 13:02:19 +02008struct mtd_info *__mtd_next_device(int i);
Boris Brezillond63d0812019-01-02 15:36:54 +01009int __must_check add_mtd_device(struct mtd_info *mtd);
Artem Bityutskiycb707832013-03-15 13:02:19 +020010int del_mtd_device(struct mtd_info *mtd);
11int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
12int del_mtd_partitions(struct mtd_info *);
Brian Norris07fd2f82015-12-04 15:25:17 -080013
14struct mtd_partitions;
15
Artem Bityutskiycb707832013-03-15 13:02:19 +020016int parse_mtd_partitions(struct mtd_info *master, const char * const *types,
Brian Norris07fd2f82015-12-04 15:25:17 -080017 struct mtd_partitions *pparts,
Artem Bityutskiycb707832013-03-15 13:02:19 +020018 struct mtd_part_parser_data *data);
Jamie Ileseea72d52011-05-23 10:23:42 +010019
Brian Norrisadc83bf2015-12-09 10:24:03 -080020void mtd_part_parser_cleanup(struct mtd_partitions *parts);
21
Artem Bityutskiy660685d2013-03-14 13:27:40 +020022int __init init_mtdchar(void);
23void __exit cleanup_mtdchar(void);
24
Ben Hutchingsf1332ba2010-01-29 20:57:11 +000025#define mtd_for_each_device(mtd) \
26 for ((mtd) = __mtd_next_device(0); \
27 (mtd) != NULL; \
28 (mtd) = __mtd_next_device(mtd->index + 1))