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/pci/ahc_pci.c | |
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/pci/ahc_pci.c')
-rw-r--r-- | sys/pci/ahc_pci.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/pci/ahc_pci.c b/sys/pci/ahc_pci.c index dc8b7c6..bc4fd3f 100644 --- a/sys/pci/ahc_pci.c +++ b/sys/pci/ahc_pci.c @@ -34,11 +34,9 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_pci.c,v 1.14 1999/05/25 20:12:32 gibbs Exp $ + * $Id: ahc_pci.c,v 1.15 1999/05/26 16:59:17 gibbs Exp $ */ -#include <pci.h> -#if NPCI > 0 #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> @@ -1615,5 +1613,3 @@ ahc_aha398XX_setup(device_t dev, char *channel, ahc_chip *chip, *flags |= AHC_LARGE_SEEPROM; return (0); } - -#endif /* NPCI > 0 */ |