summaryrefslogtreecommitdiffstats
path: root/sys/dev/lnc
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1995-10-13 19:48:06 +0000
committerwollman <wollman@FreeBSD.org>1995-10-13 19:48:06 +0000
commit234ef116d975fedba5bd998e69fa71d6a1c0542b (patch)
treeae4c80f82b68580a77b0dad688cad0327acd8765 /sys/dev/lnc
parentad2a8dc42d82628e3758c1c5de0f70393ed2234d (diff)
downloadFreeBSD-src-234ef116d975fedba5bd998e69fa71d6a1c0542b.zip
FreeBSD-src-234ef116d975fedba5bd998e69fa71d6a1c0542b.tar.gz
Say goodbye to IFF_NOTRAILERS. Support for trailers was officially
dropped for 4.4, but for some reason this flag lived on. (Until today, that is.)
Diffstat (limited to 'sys/dev/lnc')
-rw-r--r--sys/dev/lnc/if_lnc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c
index 1366236..632ef6c 100644
--- a/sys/dev/lnc/if_lnc.c
+++ b/sys/dev/lnc/if_lnc.c
@@ -1083,7 +1083,7 @@ lnc_attach(struct isa_device * isa_dev)
sc->arpcom.ac_if.if_name = lncdriver.name;
sc->arpcom.ac_if.if_unit = isa_dev->id_unit;
sc->arpcom.ac_if.if_mtu = ETHERMTU;
- sc->arpcom.ac_if.if_flags = IFF_BROADCAST | IFF_NOTRAILERS | IFF_SIMPLEX;
+ sc->arpcom.ac_if.if_flags = IFF_BROADCAST | IFF_SIMPLEX;
sc->arpcom.ac_if.if_timer = 0;
sc->arpcom.ac_if.if_init = lnc_init;
sc->arpcom.ac_if.if_output = ether_output;
@@ -1131,7 +1131,7 @@ lnc_init(int unit)
s = splimp();
lnc_stop(unit);
- sc->arpcom.ac_if.if_flags |= IFF_BROADCAST | IFF_NOTRAILERS | IFF_SIMPLEX;
+ sc->arpcom.ac_if.if_flags |= IFF_BROADCAST | IFF_SIMPLEX; /* XXX??? */
/*
* This sets up the memory area for the controller. Memory is set up for
OpenPOWER on IntegriCloud