diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-07-11 02:34:28 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-07-11 02:34:28 +0200 |
commit | 0f5f226ba1ccbc3b134c77a33503ad2182c05e5a (patch) | |
tree | 52f1730b02846328886c9f0fb2803ade36ebd9f9 | |
parent | 2e5e5cde710255d9f6ba8255a7e11f9d38b3e88a (diff) |
etherrt2860: add multicast stub
-rw-r--r-- | sys/src/9/pc/etherrt2860.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/src/9/pc/etherrt2860.c b/sys/src/9/pc/etherrt2860.c index 5f4ee4a5d..79e4ef68b 100644 --- a/sys/src/9/pc/etherrt2860.c +++ b/sys/src/9/pc/etherrt2860.c @@ -1430,6 +1430,11 @@ rt2860promiscuous(void *arg, int on) qunlock(ctlr); } +static void +rt2860multicast(void *, uchar*, int) +{ +} + static FWImage* readfirmware(void){ static char name[] = "ral-rt2860"; @@ -3550,7 +3555,7 @@ again: edev->ifstat = rt2860ifstat; edev->ctl = rt2860ctl; edev->promiscuous = rt2860promiscuous; - edev->multicast = nil; + edev->multicast = rt2860multicast; edev->mbps = 10; if(rt2860init(edev) < 0){ |