diff options
| author | Bill Fenner <fenner@FreeBSD.org> | 1997-10-27 00:02:33 +0000 |
|---|---|---|
| committer | Bill Fenner <fenner@FreeBSD.org> | 1997-10-27 00:02:33 +0000 |
| commit | cca13d34b9aba740b1594b56aeeb7b4b14ddeca2 (patch) | |
| tree | 31d2f8d69b6045164dccc1bb966fe87b7472643f /sys/dev | |
| parent | 075a76a29e430a05f79649273e2786ce492a3593 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ep/if_ep.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/dev/ep/if_ep.c b/sys/dev/ep/if_ep.c index e5db6179e02b..90f1f2e336e1 100644 --- a/sys/dev/ep/if_ep.c +++ b/sys/dev/ep/if_ep.c @@ -38,7 +38,7 @@ */ /* - * $Id: if_ep.c,v 1.63 1997/10/26 04:53:53 nate Exp $ + * $Id: if_ep.c,v 1.64 1997/10/26 21:08:40 nate Exp $ * * Promiscuous mode added and interrupt logic slightly changed * to reduce the number of adapter failures. Transceiver select @@ -1301,9 +1301,12 @@ epioctl(ifp, cmd, data) break; case SIOCADDMULTI: case SIOCDELMULTI: - /* Now this driver has no support for programmable - * multicast filters. If some day it will gain this - * support this part of code must be extended. + /* + * The Etherlink III has no programmable multicast + * filter. We always initialize the card to be + * promiscuous to multicast, since we're always a + * member of the ALL-SYSTEMS group, so there's no + * need to process SIOC*MULTI requests. */ error = 0; break; |
