1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-28 17:39:30 +03:00

mac80211: fix linux 3.5 compatibility

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32449 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2012-06-19 00:59:19 +00:00
parent ba1de008db
commit 5a4d032c71

View File

@ -270,7 +270,7 @@
__NL80211_STA_INFO_AFTER_LAST,
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -2553,6 +2553,33 @@ nla_put_failure:
@@ -2553,6 +2553,32 @@ nla_put_failure:
return false;
}
@ -285,26 +285,25 @@
+
+ attr = nla_nest_start(msg, id);
+ if (!attr)
+ goto nla_put_failure;
+ return false;
+
+ for (i = 0; i < 4; i++) {
+ if (!(mask & BIT(i)))
+ continue;
+
+ NLA_PUT_U8(msg, i, signal[i]);
+ if (nla_put_u8(msg, i, signal[i]))
+ return false;
+ }
+
+ nla_nest_end(msg, attr);
+
+ return true;
+nla_put_failure:
+ return false;
+}
+
static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq,
int flags,
struct cfg80211_registered_device *rdev,
@@ -2614,6 +2641,18 @@ static int nl80211_send_station(struct s
@@ -2614,6 +2640,18 @@ static int nl80211_send_station(struct s
default:
break;
}