code: plan9front

Download patch

ref: 2e5e5cde710255d9f6ba8255a7e11f9d38b3e88a
parent: b4f9ca6c976ea61512d872924824c924af903aa4
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Jul 10 22:33:57 EDT 2015

etheriwl: add multicast stub

--- a/sys/src/9/pc/etheriwl.c
+++ b/sys/src/9/pc/etheriwl.c
@@ -2139,6 +2139,11 @@
 }
 
 static void
+iwlmulticast(void *, uchar*, int)
+{
+}
+
+static void
 iwlrecover(void *arg)
 {
 	Ether *edev;
@@ -2521,7 +2526,7 @@
 	edev->ctl = iwlctl;
 	edev->shutdown = iwlshutdown;
 	edev->promiscuous = iwlpromiscuous;
-	edev->multicast = nil;
+	edev->multicast = iwlmulticast;
 	edev->mbps = 54;
 
 	if(iwlinit(edev) < 0){