genetlink: use genl_register_family_with_ops()
Signed-off-by: Changli Gao <xiaosuo@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a256be70c5
commit
652c671746
1 changed files with 1 additions and 5 deletions
|
@ -877,11 +877,7 @@ static int __init genl_init(void)
|
|||
for (i = 0; i < GENL_FAM_TAB_SIZE; i++)
|
||||
INIT_LIST_HEAD(&family_ht[i]);
|
||||
|
||||
err = genl_register_family(&genl_ctrl);
|
||||
if (err < 0)
|
||||
goto problem;
|
||||
|
||||
err = genl_register_ops(&genl_ctrl, &genl_ctrl_ops);
|
||||
err = genl_register_family_with_ops(&genl_ctrl, &genl_ctrl_ops, 1);
|
||||
if (err < 0)
|
||||
goto problem;
|
||||
|
||||
|
|
Loading…
Reference in a new issue