/* * These are exported solely for the purpose of mtd_blkdevs.c and mtdchar.c. * You should not use them for _anything_ else. */ 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); int del_mtd_partitions(struct mtd_info *); struct mtd_partitions; int parse_mtd_partitions(struct mtd_info *master, const char * const *types, struct mtd_partitions *pparts, struct mtd_part_parser_data *data); void mtd_part_parser_cleanup(struct mtd_partitions *parts); 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))Overall Contributors
Person | Tokens | Prop | Commits | CommitProp | |
jamie iles | jamie iles | 41 | 35.34% | 1 | 11.11% |
dmitry eremin-baryshkov | dmitry eremin-baryshkov | 24 | 20.69% | 1 | 11.11% |
artem bityutskiy | artem bityutskiy | 16 | 13.79% | 2 | 22.22% |
ben hutchings | ben hutchings | 14 | 12.07% | 2 | 22.22% |
brian norris | brian norris | 13 | 11.21% | 2 | 22.22% |
ben dooks | ben dooks | 8 | 6.90% | 1 | 11.11% |
Total | 116 | 100.00% | 9 | 100.00% |