ar7: register_mtd_parser() does no longer have a return value

Signed-off-by: John Crispin <blogic@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44638 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
John Crispin
2015-03-10 11:02:45 +00:00
parent 7ad0ed98b6
commit 0d35249fed

View File

@@ -210,7 +210,8 @@ static struct mtd_part_parser ac49x_parser = {
static int __init ac49x_parser_init(void)
{
return register_mtd_parser(&ac49x_parser);
register_mtd_parser(&ac49x_parser);
return 0;
}
module_init(ac49x_parser_init);