summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/mtdcore.h
diff options
context:
space:
mode:
authorJamie Iles2011-05-23 11:23:42 +0200
committerDavid Woodhouse2011-05-25 03:25:16 +0200
commiteea72d5fdf59879edb2c6639b0b7cc385e0df646 (patch)
treeef1afdcca1ac280c46c72e4dd433654b0f3cb652 /drivers/mtd/mtdcore.h
parentmtd: convert remaining users to mtd_device_register() (diff)
downloadkernel-qcow2-linux-eea72d5fdf59879edb2c6639b0b7cc385e0df646.tar.gz
kernel-qcow2-linux-eea72d5fdf59879edb2c6639b0b7cc385e0df646.tar.xz
kernel-qcow2-linux-eea72d5fdf59879edb2c6639b0b7cc385e0df646.zip
mtd: remove add_mtd_partitions, add_mtd_device and friends
These symbols are replaced with mtd_device_register() (and removal with mtd_device_unregister()) for public registration. Signed-off-by: Jamie Iles <jamie@jamieiles.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/mtdcore.h')
-rw-r--r--drivers/mtd/mtdcore.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mtd/mtdcore.h b/drivers/mtd/mtdcore.h
index 6a64fdebc898..0ed6126b4c1f 100644
--- a/drivers/mtd/mtdcore.h
+++ b/drivers/mtd/mtdcore.h
@@ -10,6 +10,12 @@
extern struct mutex mtd_table_mutex;
extern struct mtd_info *__mtd_next_device(int i);
+extern int add_mtd_device(struct mtd_info *mtd);
+extern int del_mtd_device(struct mtd_info *mtd);
+extern int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *,
+ int);
+extern int del_mtd_partitions(struct mtd_info *);
+
#define mtd_for_each_device(mtd) \
for ((mtd) = __mtd_next_device(0); \
(mtd) != NULL; \