diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-08-13 23:53:36 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-08-13 23:53:36 +0000 |
| commit | 095f2ac4431cf6672dcbe63e775b4d333c67af99 (patch) | |
| tree | 687587a7e123e223980bf5cdf552f5c23839dfd7 /sys/dev/txp | |
| parent | 85d5028a78876d91a9a47b4a993746f2038c30fa (diff) | |
Notes
Diffstat (limited to 'sys/dev/txp')
| -rw-r--r-- | sys/dev/txp/if_txp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/txp/if_txp.c b/sys/dev/txp/if_txp.c index 976b0f26d29de..2a7221de4f9f9 100644 --- a/sys/dev/txp/if_txp.c +++ b/sys/dev/txp/if_txp.c @@ -332,7 +332,8 @@ txp_attach(dev) ifp->if_softc = sc; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); 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_ioctl = txp_ioctl; ifp->if_start = txp_start; ifp->if_watchdog = txp_watchdog; |
