diff options
author | eivind <eivind@FreeBSD.org> | 1997-12-15 20:31:25 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-12-15 20:31:25 +0000 |
commit | 3452c23db8bec7afb3a4bc3b82801c3d659e2e55 (patch) | |
tree | b28bf5a6d5fe5f4fac13c8f346dd64244f8ed330 /sys/dev/fe | |
parent | bf82710fe709ef5b3e943e0ec201b4ef5add73fa (diff) | |
download | FreeBSD-src-3452c23db8bec7afb3a4bc3b82801c3d659e2e55.zip FreeBSD-src-3452c23db8bec7afb3a4bc3b82801c3d659e2e55.tar.gz |
Throw options IPX, IPXIP and IPTUNNEL into opt_ipx.h.
The #ifdef IPXIP in netipx/ipx_if.h is OK (used from ipx_usrreq.c and
ifconfig.c only).
I also fixed a typo IPXTUNNEL -> IPTUNNEL (and #ifdef'ed out the code
inside, as it never could have compiled - doh.)
Diffstat (limited to 'sys/dev/fe')
-rw-r--r-- | sys/dev/fe/if_fe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index 866f505..115b85e 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -21,7 +21,7 @@ */ /* - * $Id: if_fe.c,v 1.34 1997/11/07 08:52:39 phk Exp $ + * $Id: if_fe.c,v 1.35 1997/11/20 15:48:35 nate Exp $ * * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards. * To be used with FreeBSD 2.x @@ -72,6 +72,7 @@ #include "fe.h" #include "bpfilter.h" +#include "opt_ipx.h" #include <sys/param.h> #include <sys/kernel.h> |