mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
0b2c42ced2
This updates mac80211 to version 5.2-rc7, this contains all the changes to the wireless subsystem up to Linux 5.2-rc7. * The removed patches are applied upstream * b43 now uses kmod-lib-cordic * Update the nl80211.h file in iw to match backports version. * Remove the two backports from kernel 4.9, they were needed for mt76, but that can use the version from backports now, otherwise they collide and cause compile errors. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
22 lines
579 B
Diff
22 lines
579 B
Diff
--- a/drivers/net/wireless/marvell/libertas/cfg.c
|
|
+++ b/drivers/net/wireless/marvell/libertas/cfg.c
|
|
@@ -2041,6 +2041,8 @@ struct wireless_dev *lbs_cfg_alloc(struc
|
|
goto err_wiphy_new;
|
|
}
|
|
|
|
+ set_wiphy_dev(wdev->wiphy, dev);
|
|
+
|
|
return wdev;
|
|
|
|
err_wiphy_new:
|
|
--- a/drivers/net/wireless/marvell/libertas/main.c
|
|
+++ b/drivers/net/wireless/marvell/libertas/main.c
|
|
@@ -935,6 +935,7 @@ struct lbs_private *lbs_add_card(void *c
|
|
goto err_adapter;
|
|
}
|
|
|
|
+ dev_net_set(dev, wiphy_net(wdev->wiphy));
|
|
dev->ieee80211_ptr = wdev;
|
|
dev->ml_priv = priv;
|
|
SET_NETDEV_DEV(dev, dmdev);
|