1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 19:57:09 +03:00
openwrt-xburst/package/mac80211/patches/120-linux-2.6.30-compat.patch

15 lines
310 B
Diff
Raw Normal View History

--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -5667,7 +5667,11 @@
return err;
}
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32))
err = genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid);
+#else
+ err = genlmsg_unicast(msg, nlpid);
+#endif
if (err < 0)
return err;
return 0;