aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mtd
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2013-12-01 18:59:15 +0800
committerBrian Norris <computersforpeace@gmail.com>2014-01-03 11:22:22 -0800
commitcf3b2b1e24998ba67ca6defa71899bee2432046f (patch)
treef111948c2c628cac23407e603939ed57cbdd43eb /include/linux/mtd
parentjffs2: NULL return of kmem_cache_zalloc should be handled (diff)
downloadlinux-dev-cf3b2b1e24998ba67ca6defa71899bee2432046f.tar.xz
linux-dev-cf3b2b1e24998ba67ca6defa71899bee2432046f.zip
mtd: make deregister_mtd_parser return void
deregister_mtd_parser never fails; hence make it return void. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r--include/linux/mtd/partitions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h
index 335ffca10c10..d513ffbd8043 100644
--- a/include/linux/mtd/partitions.h
+++ b/include/linux/mtd/partitions.h
@@ -77,7 +77,7 @@ 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 void deregister_mtd_parser(struct mtd_part_parser *parser);
int mtd_is_partition(const struct mtd_info *mtd);
int mtd_add_partition(struct mtd_info *master, const char *name,