summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2013-09-05 20:55:59 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2013-09-05 20:55:59 +0000
commit924f96da00826344dbc4ed9a85f8a6e699959ab3 (patch)
tree6919c08d5741d18126000638074510ffca13a626 /sys/arch
parent23e0b9e6613ec729857d8527a6cce4275588775e (diff)
Most network drivers include netinet/in_var.h, but apparently they
don't have to. Remove these include lines from mvme68k, mvme88k, sparc drivers. test and OK miod@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme68k/dev/if_ie.c3
-rw-r--r--sys/arch/mvme88k/dev/if_ie.c3
-rw-r--r--sys/arch/sparc/dev/be.c3
-rw-r--r--sys/arch/sparc/dev/hme.c3
-rw-r--r--sys/arch/sparc/dev/if_gem_sbus.c3
-rw-r--r--sys/arch/sparc/dev/if_ie.c3
-rw-r--r--sys/arch/sparc/dev/if_ti_sbus.c3
-rw-r--r--sys/arch/sparc/dev/qe.c3
-rw-r--r--sys/arch/sparc/dev/qec.c3
9 files changed, 9 insertions, 18 deletions
diff --git a/sys/arch/mvme68k/dev/if_ie.c b/sys/arch/mvme68k/dev/if_ie.c
index 6eddd5873d1..bbeb3fda705 100644
--- a/sys/arch/mvme68k/dev/if_ie.c
+++ b/sys/arch/mvme68k/dev/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.40 2012/10/10 04:52:16 camield Exp $ */
+/* $OpenBSD: if_ie.c,v 1.41 2013/09/05 20:55:57 bluhm Exp $ */
/*-
* Copyright (c) 1999 Steve Murphree, Jr.
@@ -120,7 +120,6 @@ Mode of operation:
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/mvme88k/dev/if_ie.c b/sys/arch/mvme88k/dev/if_ie.c
index 53fe1e0fd43..2084d6c9348 100644
--- a/sys/arch/mvme88k/dev/if_ie.c
+++ b/sys/arch/mvme88k/dev/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.45 2012/10/10 04:52:16 camield Exp $ */
+/* $OpenBSD: if_ie.c,v 1.46 2013/09/05 20:55:57 bluhm Exp $ */
/*-
* Copyright (c) 1998 Steve Murphree, Jr.
@@ -119,7 +119,6 @@ Mode of operation:
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/sparc/dev/be.c b/sys/arch/sparc/dev/be.c
index cbdc6652e55..b9574463bb3 100644
--- a/sys/arch/sparc/dev/be.c
+++ b/sys/arch/sparc/dev/be.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: be.c,v 1.43 2008/11/28 02:44:17 brad Exp $ */
+/* $OpenBSD: be.c,v 1.44 2013/09/05 20:55:58 bluhm Exp $ */
/*
* Copyright (c) 1998 Theo de Raadt and Jason L. Wright.
@@ -46,7 +46,6 @@
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/sparc/dev/hme.c b/sys/arch/sparc/dev/hme.c
index b9dab909d29..353f5a05b8e 100644
--- a/sys/arch/sparc/dev/hme.c
+++ b/sys/arch/sparc/dev/hme.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hme.c,v 1.63 2013/08/21 05:21:42 dlg Exp $ */
+/* $OpenBSD: hme.c,v 1.64 2013/09/05 20:55:58 bluhm Exp $ */
/*
* Copyright (c) 1998 Jason L. Wright (jason@thought.net)
@@ -59,7 +59,6 @@
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#include <netinet/tcp.h>
diff --git a/sys/arch/sparc/dev/if_gem_sbus.c b/sys/arch/sparc/dev/if_gem_sbus.c
index b8809b3fa96..ad2e8c4b22a 100644
--- a/sys/arch/sparc/dev/if_gem_sbus.c
+++ b/sys/arch/sparc/dev/if_gem_sbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_gem_sbus.c,v 1.1 2009/07/13 19:53:58 kettenis Exp $ */
+/* $OpenBSD: if_gem_sbus.c,v 1.2 2013/09/05 20:55:58 bluhm Exp $ */
/* $NetBSD: if_gem_sbus.c,v 1.1 2006/11/24 13:23:32 martin Exp $ */
/*-
@@ -48,7 +48,6 @@
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/sparc/dev/if_ie.c b/sys/arch/sparc/dev/if_ie.c
index c6a875afe89..95977853445 100644
--- a/sys/arch/sparc/dev/if_ie.c
+++ b/sys/arch/sparc/dev/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.42 2012/10/10 04:52:16 camield Exp $ */
+/* $OpenBSD: if_ie.c,v 1.43 2013/09/05 20:55:58 bluhm Exp $ */
/* $NetBSD: if_ie.c,v 1.33 1997/07/29 17:55:38 fair Exp $ */
/*-
@@ -126,7 +126,6 @@ Mode of operation:
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/sparc/dev/if_ti_sbus.c b/sys/arch/sparc/dev/if_ti_sbus.c
index fefd0987969..f2ce4ede4b8 100644
--- a/sys/arch/sparc/dev/if_ti_sbus.c
+++ b/sys/arch/sparc/dev/if_ti_sbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ti_sbus.c,v 1.1 2009/08/29 21:30:48 kettenis Exp $ */
+/* $OpenBSD: if_ti_sbus.c,v 1.2 2013/09/05 20:55:58 bluhm Exp $ */
/*
* Copyright (c) 2009 Mark Kettenis
*
@@ -26,7 +26,6 @@
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/sparc/dev/qe.c b/sys/arch/sparc/dev/qe.c
index 6df7333ea5f..4c15756fd0c 100644
--- a/sys/arch/sparc/dev/qe.c
+++ b/sys/arch/sparc/dev/qe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qe.c,v 1.33 2010/11/11 17:46:58 miod Exp $ */
+/* $OpenBSD: qe.c,v 1.34 2013/09/05 20:55:58 bluhm Exp $ */
/*
* Copyright (c) 1998, 2000 Jason L. Wright.
@@ -54,7 +54,6 @@
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif
diff --git a/sys/arch/sparc/dev/qec.c b/sys/arch/sparc/dev/qec.c
index 358e7b558d4..bfe5247b38e 100644
--- a/sys/arch/sparc/dev/qec.c
+++ b/sys/arch/sparc/dev/qec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qec.c,v 1.19 2010/09/05 18:10:10 kettenis Exp $ */
+/* $OpenBSD: qec.c,v 1.20 2013/09/05 20:55:58 bluhm Exp $ */
/*
* Copyright (c) 1998 Theo de Raadt and Jason L. Wright.
@@ -47,7 +47,6 @@
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#endif