diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-08-12 03:02:16 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-08-12 03:02:16 +0000 |
| commit | 52bc12b3da23703919226ccb6c5b54456e4616ba (patch) | |
| tree | 03fe467113c200c896516ec36a3560fc44293b86 | |
| parent | 5e29d1ab0a75996d6059a86c340d868bb775e663 (diff) | |
Notes
| -rw-r--r-- | sys/dev/firewire/if_fwe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/firewire/if_fwe.c b/sys/dev/firewire/if_fwe.c index d3c828de47913..96d903c78a968 100644 --- a/sys/dev/firewire/if_fwe.c +++ b/sys/dev/firewire/if_fwe.c @@ -215,7 +215,8 @@ fwe_attach(device_t dev) ifp->if_start = fwe_start; ifp->if_ioctl = fwe_ioctl; ifp->if_mtu = ETHERMTU; - ifp->if_flags = (IFF_BROADCAST|IFF_SIMPLEX|IFF_MULTICAST); + ifp->if_flags = (IFF_BROADCAST|IFF_SIMPLEX|IFF_MULTICAST| + IFF_NEEDSGIANT); ifp->if_snd.ifq_maxlen = TX_MAX_QUEUE; s = splimp(); |
