mtd: kill off MTD partition parser boilerplate
Most parsers can be handled with our new boilerplate-reducing macro. There are a few that can't be (cmdlineparts and ofpart). Also kill off the owner assignments, since register_mtd_parser() now takes care of that. Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
@@ -132,24 +132,10 @@ static int create_mtd_partitions(struct mtd_info *master,
|
||||
}
|
||||
|
||||
static struct mtd_part_parser ar7_parser = {
|
||||
.owner = THIS_MODULE,
|
||||
.parse_fn = create_mtd_partitions,
|
||||
.name = "ar7part",
|
||||
};
|
||||
|
||||
static int __init ar7_parser_init(void)
|
||||
{
|
||||
register_mtd_parser(&ar7_parser);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __exit ar7_parser_exit(void)
|
||||
{
|
||||
deregister_mtd_parser(&ar7_parser);
|
||||
}
|
||||
|
||||
module_init(ar7_parser_init);
|
||||
module_exit(ar7_parser_exit);
|
||||
module_mtd_part_parser(ar7_parser);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR( "Felix Fietkau <nbd@openwrt.org>, "
|
||||
|
Reference in New Issue
Block a user