diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-11-25 11:20:39 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-11-25 11:20:39 +0000 |
commit | 4311d4d9bf0e522e846e82d9fb31fdb25a8d9911 (patch) | |
tree | ce92306f683d9129fdf627b0711f3b6ab03545b9 /sys/dev/ic | |
parent | dd376135b385eab35f5343d322610bbb6cf1d8d3 (diff) |
Network drivers should not include <net/route.h> or <net/netisr.h>
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/elink3.c | 3 | ||||
-rw-r--r-- | sys/dev/ic/lemac.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ic/elink3.c b/sys/dev/ic/elink3.c index eac3b48fb4d..3bcc6010ae9 100644 --- a/sys/dev/ic/elink3.c +++ b/sys/dev/ic/elink3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: elink3.c,v 1.91 2015/11/25 03:09:58 dlg Exp $ */ +/* $OpenBSD: elink3.c,v 1.92 2015/11/25 11:20:38 mpi Exp $ */ /* $NetBSD: elink3.c,v 1.32 1997/05/14 00:22:00 thorpej Exp $ */ /* @@ -46,7 +46,6 @@ #include <sys/device.h> #include <net/if.h> -#include <net/netisr.h> #include <net/if_media.h> #include <netinet/in.h> diff --git a/sys/dev/ic/lemac.c b/sys/dev/ic/lemac.c index 9434e5b398c..7c7756cfaa8 100644 --- a/sys/dev/ic/lemac.c +++ b/sys/dev/ic/lemac.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lemac.c,v 1.26 2015/11/25 03:09:58 dlg Exp $ */ +/* $OpenBSD: lemac.c,v 1.27 2015/11/25 11:20:38 mpi Exp $ */ /* $NetBSD: lemac.c,v 1.20 2001/06/13 10:46:02 wiz Exp $ */ /*- @@ -45,7 +45,6 @@ #include <sys/device.h> #include <net/if.h> -#include <net/route.h> #include <net/if_media.h> #include <netinet/in.h> |