Lost cx_mpsafenet check.

Pointy hat:	me
Approved by:	re (scottl)
This commit is contained in:
rik 2005-07-09 14:31:48 +00:00
parent 8413a0582f
commit 6f7b42e659

View File

@ -853,8 +853,9 @@ static int cx_attach (device_t dev)
d->ifp->if_softc = d;
if_initname (d->ifp, "cx", b->num * NCHAN + c->num);
d->ifp->if_mtu = PP_MTU;
d->ifp->if_flags = IFF_POINTOPOINT | IFF_MULTICAST |
IFF_NEEDSGIANT;
d->ifp->if_flags = IFF_POINTOPOINT | IFF_MULTICAST;
if (!cx_mpsafenet)
d->ifp->if_flags |= IFF_NEEDSGIANT;
d->ifp->if_ioctl = cx_sioctl;
d->ifp->if_start = cx_ifstart;
d->ifp->if_watchdog = cx_ifwatchdog;