linux-next: manual merge of the wireless tree with the net tree
From: Stephen Rothwell <hidden>
Date: 2011-05-19 01:02:30
Also in:
linux-next, lkml
From: Stephen Rothwell <hidden>
Date: 2011-05-19 01:02:30
Also in:
linux-next, lkml
Hi John,
Today's linux-next merge of the wireless tree got a conflict in
drivers/net/wireless/mac80211_hwsim.c between commit 1c5cae815d19 ("net:
call dev_alloc_name from register_netdevice") from the net tree and
commit 444c7896bf5b ("mac80211_hwsim driver support userspace frame
tx/rx") from the wireless tree.
Just context changes. I fixed it up (see below) and can carry the fix as
necessary.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
diff --cc drivers/net/wireless/mac80211_hwsim.c
index 9d4a40e,d8ec575..0000000--- a/drivers/net/wireless/mac80211_hwsim.c
+++ b/drivers/net/wireless/mac80211_hwsim.c@@@ -1519,8 -1880,23 +1878,16 @@@ static int __init init_mac80211_hwsim(v if (err < 0) goto failed_mon; - - err = register_netdevice(hwsim_mon); - if (err < 0) - goto failed_mon; - - rtnl_unlock(); - + err = hwsim_init_netlink(); + if (err < 0) + goto failed_nl; + return 0; + failed_nl: + printk(KERN_DEBUG "mac80211_hwsim: failed initializing netlink\n"); + return err; + failed_mon: rtnl_unlock(); free_netdev(hwsim_mon);