diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-09-17 18:03:07 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-09-17 18:03:07 +0000 |
commit | 686e82a0d24eddd08131981a5da2a6909b4f748c (patch) | |
tree | db51b7fa00a5ded985589684d275b177402fa843 /sys/dev | |
parent | 057d49d4a410af3e22e258e7ea724ecc92ac0779 (diff) |
set the IFCAP_VLAN_MTU flag.
From bouyer@NetBSD
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/dp8390.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/dp8390.c b/sys/dev/ic/dp8390.c index 12a6f0533ae..7277211190b 100644 --- a/sys/dev/ic/dp8390.c +++ b/sys/dev/ic/dp8390.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dp8390.c,v 1.31 2006/03/25 22:41:42 djm Exp $ */ +/* $OpenBSD: dp8390.c,v 1.32 2006/09/17 18:03:06 brad Exp $ */ /* $NetBSD: dp8390.c,v 1.13 1998/07/05 06:49:11 jonathan Exp $ */ /* @@ -126,6 +126,8 @@ dp8390_config(sc) IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST; IFQ_SET_READY(&ifp->if_snd); + ifp->if_capabilities = IFCAP_VLAN_MTU; + /* Print additional info when attached. */ printf(", address %s\n", ether_sprintf(sc->sc_arpcom.ac_enaddr)); |