aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ep
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-03-24 11:33:46 +0000
committerBruce Evans <bde@FreeBSD.org>1997-03-24 11:33:46 +0000
commit51a534883ac9688f59dffaa624c42b0fad6236b8 (patch)
treeb194e77f08cfd580c094341e2dde06fe2625c8f1 /sys/dev/ep
parentfce002fdef3780b4b80bfe0ba6d126bfc10130e9 (diff)
downloadsrc-51a534883ac9688f59dffaa624c42b0fad6236b8.tar.gz
src-51a534883ac9688f59dffaa624c42b0fad6236b8.zip
Don't include <sys/ioctl.h> in the kernel. Stage 2: include
<sys/sockio.h> instead of <sys/ioctl.h> in network files.
Notes
Notes: svn path=/head/; revision=24204
Diffstat (limited to 'sys/dev/ep')
-rw-r--r--sys/dev/ep/if_ep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ep/if_ep.c b/sys/dev/ep/if_ep.c
index 304620bb9233..bba5ca56d4ae 100644
--- a/sys/dev/ep/if_ep.c
+++ b/sys/dev/ep/if_ep.c
@@ -38,7 +38,7 @@
*/
/*
- * $Id$
+ * $Id: if_ep.c,v 1.57 1997/02/22 09:36:25 peter Exp $
*
* Promiscuous mode added and interrupt logic slightly changed
* to reduce the number of adapter failures. Transceiver select
@@ -69,7 +69,7 @@
#endif
#include <sys/mbuf.h>
#include <sys/socket.h>
-#include <sys/ioctl.h>
+#include <sys/sockio.h>
#include <sys/errno.h>
#include <sys/syslog.h>
#if defined(__NetBSD__)