1
0
Fork 0

genetlink: use genl_register_family_with_ops()

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
wifi-calibration
Changli Gao 2010-07-25 23:21:05 +00:00 committed by David S. Miller
parent a256be70c5
commit 652c671746
1 changed files with 1 additions and 5 deletions

View File

@ -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;