summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/etheriwl.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-07-11 02:33:57 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2015-07-11 02:33:57 +0200
commit2e5e5cde710255d9f6ba8255a7e11f9d38b3e88a (patch)
tree2bee1e2e1060ecf1c470bebe7eb79f81875aaca7 /sys/src/9/pc/etheriwl.c
parentb4f9ca6c976ea61512d872924824c924af903aa4 (diff)
etheriwl: add multicast stub
Diffstat (limited to 'sys/src/9/pc/etheriwl.c')
-rw-r--r--sys/src/9/pc/etheriwl.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/src/9/pc/etheriwl.c b/sys/src/9/pc/etheriwl.c
index e086cb54e..9b617f68a 100644
--- a/sys/src/9/pc/etheriwl.c
+++ b/sys/src/9/pc/etheriwl.c
@@ -2139,6 +2139,11 @@ iwlpromiscuous(void *arg, int on)
}
static void
+iwlmulticast(void *, uchar*, int)
+{
+}
+
+static void
iwlrecover(void *arg)
{
Ether *edev;
@@ -2521,7 +2526,7 @@ again:
edev->ctl = iwlctl;
edev->shutdown = iwlshutdown;
edev->promiscuous = iwlpromiscuous;
- edev->multicast = nil;
+ edev->multicast = iwlmulticast;
edev->mbps = 54;
if(iwlinit(edev) < 0){