diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-07-11 02:33:57 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-07-11 02:33:57 +0200 |
commit | 2e5e5cde710255d9f6ba8255a7e11f9d38b3e88a (patch) | |
tree | 2bee1e2e1060ecf1c470bebe7eb79f81875aaca7 /sys/src/9/pc/etheriwl.c | |
parent | b4f9ca6c976ea61512d872924824c924af903aa4 (diff) |
etheriwl: add multicast stub
Diffstat (limited to 'sys/src/9/pc/etheriwl.c')
-rw-r--r-- | sys/src/9/pc/etheriwl.c | 7 |
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){ |