From 2e5e5cde710255d9f6ba8255a7e11f9d38b3e88a Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sat, 11 Jul 2015 02:33:57 +0200 Subject: [PATCH] etheriwl: add multicast stub --- sys/src/9/pc/etheriwl.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 @@ -2138,6 +2138,11 @@ iwlpromiscuous(void *arg, int on) qunlock(ctlr); } +static void +iwlmulticast(void *, uchar*, int) +{ +} + static void iwlrecover(void *arg) { @@ -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){