Skip to content

Commit

Permalink
wireless: Use genl_register_family_with_ops()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Michał Mirosław authored and David S. Miller committed May 21, 2009
1 parent 7ae740d commit 0d63cbb
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions net/wireless/nl80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -3912,18 +3912,13 @@ void nl80211_send_beacon_hint_event(struct wiphy *wiphy,

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;
Expand Down

0 comments on commit 0d63cbb

Please sign in to comment.