diff options
| -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){ |
