Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 82706
b: refs/heads/master
c: 3eadf5f
h: refs/heads/master
v: v3
  • Loading branch information
Johannes Berg authored and John W. Linville committed Feb 1, 2008
1 parent cafaf20 commit e746914
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f0b9205cfb77d992e8c0f727de3099159c80dbbd
refs/heads/master: 3eadf5f4f635ed6a6cd921195c320d58b5f9a185
14 changes: 7 additions & 7 deletions trunk/net/mac80211/ieee80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -1344,29 +1344,29 @@ static int __init ieee80211_init(void)

ret = rc80211_simple_init();
if (ret)
goto fail;
goto out;

ret = rc80211_pid_init();
if (ret)
goto fail_simple;
goto out_cleanup_simple;

ret = ieee80211_wme_register();
if (ret) {
printk(KERN_DEBUG "ieee80211_init: failed to "
"initialize WME (err=%d)\n", ret);
goto fail_pid;
goto out_cleanup_pid;
}

ieee80211_debugfs_netdev_init();
ieee80211_regdomain_init();

return 0;

fail_pid:
rc80211_simple_exit();
fail_simple:
out_cleanup_pid:
rc80211_pid_exit();
fail:
out_cleanup_simple:
rc80211_simple_exit();
out:
return ret;
}

Expand Down

0 comments on commit e746914

Please sign in to comment.