diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-06-23 13:23:08 +0200 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@intel.com> | 2011-09-11 14:02:13 +0200 |
commit | 3165f44bcd4b987cbcc694af739ab955b561e05b (patch) | |
tree | 104f319cf37a8397d8c6e20314cef276164cb271 /include | |
parent | mtd: nand: drop edb7312 support (diff) | |
download | linux-3165f44bcd4b987cbcc694af739ab955b561e05b.tar.xz linux-3165f44bcd4b987cbcc694af739ab955b561e05b.zip |
mtd: hide parse_mtd_partitions
There is no need to export parse_mtd_partitions() now , as it's fully handled
by registration functions. So move the definition to private header and
remove respective EXPORT_SYMBOL_GPL.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mtd/partitions.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h index a8a961a8c8ff..c98d6b858c2c 100644 --- a/include/linux/mtd/partitions.h +++ b/include/linux/mtd/partitions.h @@ -78,9 +78,6 @@ struct mtd_part_parser { extern int register_mtd_parser(struct mtd_part_parser *parser); extern int deregister_mtd_parser(struct mtd_part_parser *parser); -extern int parse_mtd_partitions(struct mtd_info *master, const char **types, - struct mtd_partition **pparts, - struct mtd_part_parser_data *data); #define put_partition_parser(p) do { module_put((p)->owner); } while(0) |