mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
wireless: Use genl_register_family_with_ops()
Use genl_register_family_with_ops() instead of a copy. Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7ae740df3a
commit
0d63cbb535
@ -3912,18 +3912,13 @@ nla_put_failure:
|
||||
|
||||
int nl80211_init(void)
|
||||
{
|
||||
int err, i;
|
||||
int err;
|
||||
|
||||
err = genl_register_family(&nl80211_fam);
|
||||
err = genl_register_family_with_ops(&nl80211_fam,
|
||||
nl80211_ops, ARRAY_SIZE(nl80211_ops));
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(nl80211_ops); i++) {
|
||||
err = genl_register_ops(&nl80211_fam, &nl80211_ops[i]);
|
||||
if (err)
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
|
||||
if (err)
|
||||
goto err_out;
|
||||
|
Loading…
Reference in New Issue
Block a user