diff options
author | peter <peter@FreeBSD.org> | 1999-07-03 20:17:08 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-07-03 20:17:08 +0000 |
commit | e5f4c63f137412a3f0691e64764e14569e7980db (patch) | |
tree | 2214af4f0dd363ebb3955ef6675f2e07918ae16b /sys/dev/tx | |
parent | 7afdd102ca81aa50337adf724b0a330ca4120544 (diff) | |
download | FreeBSD-src-e5f4c63f137412a3f0691e64764e14569e7980db.zip FreeBSD-src-e5f4c63f137412a3f0691e64764e14569e7980db.tar.gz |
Eliminate a bunch of #include "pci.h" and #if NPCI > 0 around entire
files. config will leave the whole file out if configured to do so.
Diffstat (limited to 'sys/dev/tx')
-rw-r--r-- | sys/dev/tx/if_tx.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index c83b91b..0b0cec3 100644 --- a/sys/dev/tx/if_tx.c +++ b/sys/dev/tx/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.26 1999/05/09 17:07:02 peter Exp $ */ +/* $Id: if_tx.c,v 1.27 1999/05/10 00:20:46 peter Exp $ */ /*- * Copyright (c) 1997 Semen Ustimenko (semen@iclub.nsu.ru) @@ -68,10 +68,8 @@ } #include "bpfilter.h" -#include "pci.h" #include "opt_bdg.h" -#if NPCI > 0 #include <sys/param.h> #include <sys/systm.h> #include <sys/mbuf.h> @@ -2040,4 +2038,3 @@ epic_dump_state __P(( ); } } -#endif /* NPCI > 0 */ |