ar7: register_mtd_parser() does no longer have a return value
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44638
This commit is contained in:
parent
d16f07aa10
commit
8777e3189e
1 changed files with 2 additions and 1 deletions
|
@ -210,7 +210,8 @@ static struct mtd_part_parser ac49x_parser = {
|
||||||
|
|
||||||
static int __init ac49x_parser_init(void)
|
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);
|
module_init(ac49x_parser_init);
|
||||||
|
|
Loading…
Reference in a new issue