aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/wireless.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2006-08-15 00:36:49 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 14:55:00 -0700
commitbd5785ba3ac1c89aa4c351ceb2acd96686424d8c (patch)
tree26e473bff32af75af82ebab226d18bba8ba459cb /net/core/wireless.c
parent[BRIDGE]: Convert notifications to use rtnl_notify() (diff)
downloadlinux-dev-bd5785ba3ac1c89aa4c351ceb2acd96686424d8c.tar.xz
linux-dev-bd5785ba3ac1c89aa4c351ceb2acd96686424d8c.zip
[WIRELESS]: Convert notifications to use rtnl_notify()
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/wireless.c')
-rw-r--r--net/core/wireless.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/wireless.c b/net/core/wireless.c
index 348b9da73cc4..3168fca312f7 100644
--- a/net/core/wireless.c
+++ b/net/core/wireless.c
@@ -85,6 +85,7 @@
#include <linux/wireless.h> /* Pretty obvious */
#include <net/iw_handler.h> /* New driver API */
+#include <net/netlink.h>
#include <asm/uaccess.h> /* copy_to_user() */
@@ -1849,7 +1850,7 @@ static void wireless_nlevent_process(unsigned long data)
struct sk_buff *skb;
while ((skb = skb_dequeue(&wireless_nlevent_queue)))
- netlink_broadcast(rtnl, skb, 0, RTNLGRP_LINK, GFP_ATOMIC);
+ rtnl_notify(skb, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
}
static DECLARE_TASKLET(wireless_nlevent_tasklet, wireless_nlevent_process, 0);