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/if_en_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/if_en_pci.c')
-rw-r--r-- | sys/pci/if_en_pci.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/pci/if_en_pci.c b/sys/pci/if_en_pci.c index 4b8c865..0f0e3a7 100644 --- a/sys/pci/if_en_pci.c +++ b/sys/pci/if_en_pci.c @@ -46,8 +46,6 @@ */ #include "en.h" -#include "pci.h" -#if (NEN > 0) && (NPCI > 0) #include <sys/param.h> #include <sys/kernel.h> @@ -435,5 +433,3 @@ eni_get_macaddr(scp) } #endif /* !MIDWAY_ADPONLY */ - -#endif /* NEN > 0 && NPCI > 0 */ |