diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-08-28 15:10:35 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-08-28 15:10:35 +0000 |
| commit | 2a567ae5ec2f43e3527d4de50a7a0ba00b81b2be (patch) | |
| tree | 206c6b5c619776a3887539552fb0be0b3f4781c9 /sys/dev/ti | |
| parent | c0b43624d57131306451f0ff942ac8bbb65eaa0e (diff) | |
Notes
Diffstat (limited to 'sys/dev/ti')
| -rw-r--r-- | sys/dev/ti/if_ti.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 62fcf9911356..f9ee1e4e5425 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -2157,7 +2157,8 @@ ti_attach(dev) ifp = &sc->arpcom.ac_if; ifp->if_softc = sc; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); - ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; + ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST | + IFF_NEEDSGIANT; tis[unit] = sc; ifp->if_ioctl = ti_ioctl; ifp->if_start = ti_start; |
