diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-08-13 23:32:17 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-08-13 23:32:17 +0000 |
| commit | 68c7bc6de8ea0b171631ced3546566196e033ee9 (patch) | |
| tree | bce9a42a1d13aad19447b8a21038d52603c6fa06 /sys/dev/ppbus | |
| parent | fc4af83ae938495206a57eaf95dcdc32d5165d35 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ppbus')
| -rw-r--r-- | sys/dev/ppbus/if_plip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ppbus/if_plip.c b/sys/dev/ppbus/if_plip.c index a684656d00f11..67d8be9ffd25f 100644 --- a/sys/dev/ppbus/if_plip.c +++ b/sys/dev/ppbus/if_plip.c @@ -237,7 +237,8 @@ lp_attach (device_t dev) ifp->if_softc = lp; if_initname(ifp, device_get_name(dev), device_get_unit(dev)); ifp->if_mtu = LPMTU; - ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST; + ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST | + IFF_NEEDSGIANT; ifp->if_ioctl = lpioctl; ifp->if_output = lpoutput; ifp->if_type = IFT_PARA; |
