summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1999-08-21 22:10:49 +0000
committermsmith <msmith@FreeBSD.org>1999-08-21 22:10:49 +0000
commit0da24050bf099d1e4d5d58f656d4b2aaa082efa9 (patch)
tree22db1a3b7292b26dbd94492f934da7198720d087 /sys/pci
parentf1ca67e0d8e4dc83d198e624bbbf8c52dedb309c (diff)
downloadFreeBSD-src-0da24050bf099d1e4d5d58f656d4b2aaa082efa9.zip
FreeBSD-src-0da24050bf099d1e4d5d58f656d4b2aaa082efa9.tar.gz
Clean up after removing sys/eventhandler.h from sys/systm.h at the last
minute. This should cover all of the missed cases (and should let LINT build again).
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/if_al.c5
-rw-r--r--sys/pci/if_en_pci.c3
-rw-r--r--sys/pci/if_fpa.c3
-rw-r--r--sys/pci/if_rl.c5
-rw-r--r--sys/pci/if_tx.c3
-rw-r--r--sys/pci/if_vx_pci.c1
6 files changed, 14 insertions, 6 deletions
diff --git a/sys/pci/if_al.c b/sys/pci/if_al.c
index ba36544..1c3c773 100644
--- a/sys/pci/if_al.c
+++ b/sys/pci/if_al.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_al.c,v 1.6 1999/07/06 19:23:22 des Exp $
+ * $Id: if_al.c,v 1.7 1999/08/21 06:24:32 msmith Exp $
*/
/*
@@ -53,6 +53,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/eventhandler.h>
#include <sys/sockio.h>
#include <sys/mbuf.h>
#include <sys/malloc.h>
@@ -90,7 +91,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: if_al.c,v 1.6 1999/07/06 19:23:22 des Exp $";
+ "$Id: if_al.c,v 1.7 1999/08/21 06:24:32 msmith Exp $";
#endif
/*
diff --git a/sys/pci/if_en_pci.c b/sys/pci/if_en_pci.c
index 30d9e98..a72a292 100644
--- a/sys/pci/if_en_pci.c
+++ b/sys/pci/if_en_pci.c
@@ -50,6 +50,9 @@
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
+#if defined(__FreeBSD__)
+#include <sys/eventhandler.h>
+#endif
#include <sys/malloc.h>
#include <sys/socket.h>
diff --git a/sys/pci/if_fpa.c b/sys/pci/if_fpa.c
index 57bc72d..7d816b8 100644
--- a/sys/pci/if_fpa.c
+++ b/sys/pci/if_fpa.c
@@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_fpa.c,v 1.10 1999/05/09 17:06:54 peter Exp $
+ * $Id: if_fpa.c,v 1.11 1999/08/21 06:24:34 msmith Exp $
*
*/
@@ -42,6 +42,7 @@
#if defined(__FreeBSD__)
#include "fpa.h"
+#include <sys/eventhandler.h>
#include <net/ethernet.h>
#include <net/if_arp.h>
#include <pci/pcivar.h>
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c
index 8fc7fbe..223f878 100644
--- a/sys/pci/if_rl.c
+++ b/sys/pci/if_rl.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_rl.c,v 1.20 1999/07/22 20:56:49 wpaul Exp $
+ * $Id: if_rl.c,v 1.21 1999/08/21 06:24:35 msmith Exp $
*/
/*
@@ -87,6 +87,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/eventhandler.h>
#include <sys/sockio.h>
#include <sys/mbuf.h>
#include <sys/malloc.h>
@@ -127,7 +128,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: if_rl.c,v 1.20 1999/07/22 20:56:49 wpaul Exp $";
+ "$Id: if_rl.c,v 1.21 1999/08/21 06:24:35 msmith Exp $";
#endif
/*
diff --git a/sys/pci/if_tx.c b/sys/pci/if_tx.c
index af694f6..b7cdc5d 100644
--- a/sys/pci/if_tx.c
+++ b/sys/pci/if_tx.c
@@ -1,5 +1,5 @@
/* $OpenBSD: if_tx.c,v 1.3 1998/10/10 04:30:09 jason Exp $ */
-/* $Id: if_tx.c,v 1.29 1999/07/06 19:23:30 des Exp $ */
+/* $Id: if_tx.c,v 1.30 1999/08/21 06:24:35 msmith Exp $ */
/*-
* Copyright (c) 1997 Semen Ustimenko (semen@iclub.nsu.ru)
@@ -125,6 +125,7 @@
#include <dev/pci/if_txvar.h>
#else /* __FreeBSD__ */
+#include <sys/eventhandler.h>
#include <net/if_mib.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
diff --git a/sys/pci/if_vx_pci.c b/sys/pci/if_vx_pci.c
index 386ba42..e4910ad 100644
--- a/sys/pci/if_vx_pci.c
+++ b/sys/pci/if_vx_pci.c
@@ -34,6 +34,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/eventhandler.h>
#include <sys/kernel.h>
#include <sys/socket.h>
OpenPOWER on IntegriCloud