summaryrefslogtreecommitdiffstats
path: root/sys/dev/cnw
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2005-07-18 17:58:59 +0000
committerrwatson <rwatson@FreeBSD.org>2005-07-18 17:58:59 +0000
commit4165eb26d111f4509d93dd17b9c2eaff6de7084b (patch)
tree271293da2248c7b34fae8ed6874bd6c88f20adc1 /sys/dev/cnw
parente11e852d543aa406f0dcc3d72a625f42369d800c (diff)
downloadFreeBSD-src-4165eb26d111f4509d93dd17b9c2eaff6de7084b.zip
FreeBSD-src-4165eb26d111f4509d93dd17b9c2eaff6de7084b.tar.gz
Mark if_cnw as IFF_NEEDSGIANT, because it does.
MFC after: 1 day
Diffstat (limited to 'sys/dev/cnw')
-rw-r--r--sys/dev/cnw/if_cnw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/cnw/if_cnw.c b/sys/dev/cnw/if_cnw.c
index d4f98c7..3baf8a0 100644
--- a/sys/dev/cnw/if_cnw.c
+++ b/sys/dev/cnw/if_cnw.c
@@ -1638,7 +1638,8 @@ static int cnw_pccard_attach(device_t dev)
if_initname(ifp, device_get_name(dev), device_get_unit(dev));
ifp->if_timer = 0;
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 = cnw_ioctl;
ifp->if_start = cnw_start;
/* ifp->if_watchdog = 0; */
OpenPOWER on IntegriCloud