summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-06-17 18:00:44 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-06-17 18:00:44 +0000
commit861a03715ab092afa2401fc435237b6b8464b385 (patch)
treeac099f2539ad34f5804085db6e486bc6c7dd163b /sys
parentdcf4db901fa226b5805e091e30cd2de069ac1769 (diff)
add sys/timeout.h
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_bge.c3
-rw-r--r--sys/dev/pci/if_dc_pci.c3
-rw-r--r--sys/dev/pci/if_ep_pci.c3
-rw-r--r--sys/dev/pci/if_fxp_pci.c3
-rw-r--r--sys/dev/pci/if_nfe.c3
-rw-r--r--sys/dev/pci/if_re_pci.c3
-rw-r--r--sys/dev/pci/if_sk.c3
-rw-r--r--sys/dev/pci/if_vge.c3
-rw-r--r--sys/dev/pci/if_vr.c3
9 files changed, 18 insertions, 9 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 7078b05ad18..9ee116622e3 100644
--- a/sys/dev/pci/if_bge.c
+++ b/sys/dev/pci/if_bge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bge.c,v 1.153 2006/06/15 20:34:41 brad Exp $ */
+/* $OpenBSD: if_bge.c,v 1.154 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
@@ -82,6 +82,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_dc_pci.c b/sys/dev/pci/if_dc_pci.c
index caaab14aa27..9d5559a0f6d 100644
--- a/sys/dev/pci/if_dc_pci.c
+++ b/sys/dev/pci/if_dc_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_dc_pci.c,v 1.52 2005/11/06 19:25:21 brad Exp $ */
+/* $OpenBSD: if_dc_pci.c,v 1.53 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -43,6 +43,7 @@
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
+#include <sys/timeout.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
diff --git a/sys/dev/pci/if_ep_pci.c b/sys/dev/pci/if_ep_pci.c
index f44747dc6b1..d85a523748b 100644
--- a/sys/dev/pci/if_ep_pci.c
+++ b/sys/dev/pci/if_ep_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_pci.c,v 1.26 2005/11/21 18:16:41 millert Exp $ */
+/* $OpenBSD: if_ep_pci.c,v 1.27 2006/06/17 18:00:43 brad Exp $ */
/* $NetBSD: if_ep_pci.c,v 1.13 1996/10/21 22:56:38 thorpej Exp $ */
/*
@@ -39,6 +39,7 @@
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
+#include <sys/timeout.h>
#include <sys/syslog.h>
#include <sys/selinfo.h>
#include <sys/device.h>
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index cb0cfdbab84..57c9473c0f1 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fxp_pci.c,v 1.46 2006/03/08 20:51:59 miod Exp $ */
+/* $OpenBSD: if_fxp_pci.c,v 1.47 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1995, David Greenman
@@ -44,6 +44,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/socket.h>
+#include <sys/timeout.h>
#include <sys/syslog.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_nfe.c b/sys/dev/pci/if_nfe.c
index 5ec75829340..c067654b390 100644
--- a/sys/dev/pci/if_nfe.c
+++ b/sys/dev/pci/if_nfe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_nfe.c,v 1.62 2006/05/29 01:00:02 brad Exp $ */
+/* $OpenBSD: if_nfe.c,v 1.63 2006/06/17 18:00:43 brad Exp $ */
/*-
* Copyright (c) 2006 Damien Bergamini <damien.bergamini@free.fr>
@@ -32,6 +32,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <machine/bus.h>
diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c
index dc71c50e8dd..9dd70b67322 100644
--- a/sys/dev/pci/if_re_pci.c
+++ b/sys/dev/pci/if_re_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_re_pci.c,v 1.10 2006/06/09 00:59:33 brad Exp $ */
+/* $OpenBSD: if_re_pci.c,v 1.11 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org>
@@ -28,6 +28,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_sk.c b/sys/dev/pci/if_sk.c
index 27e67e2aa40..e7e55e400b4 100644
--- a/sys/dev/pci/if_sk.c
+++ b/sys/dev/pci/if_sk.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_sk.c,v 1.113 2006/06/17 01:04:34 brad Exp $ */
+/* $OpenBSD: if_sk.c,v 1.114 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
@@ -95,6 +95,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/socket.h>
+#include <sys/timeout.h>
#include <sys/device.h>
#include <sys/queue.h>
diff --git a/sys/dev/pci/if_vge.c b/sys/dev/pci/if_vge.c
index 8d30c01c8e5..5e1f01a5072 100644
--- a/sys/dev/pci/if_vge.c
+++ b/sys/dev/pci/if_vge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vge.c,v 1.25 2006/06/13 01:33:45 brad Exp $ */
+/* $OpenBSD: if_vge.c,v 1.26 2006/06/17 18:00:43 brad Exp $ */
/* $FreeBSD: if_vge.c,v 1.3 2004/09/11 22:13:25 wpaul Exp $ */
/*
* Copyright (c) 2004
@@ -92,6 +92,7 @@
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/device.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/sys/dev/pci/if_vr.c b/sys/dev/pci/if_vr.c
index a72d939147a..39fd9371559 100644
--- a/sys/dev/pci/if_vr.c
+++ b/sys/dev/pci/if_vr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vr.c,v 1.63 2006/05/28 00:04:24 jason Exp $ */
+/* $OpenBSD: if_vr.c,v 1.64 2006/06/17 18:00:43 brad Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -69,6 +69,7 @@
#include <sys/mbuf.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
+#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>