diff options
author | alfred <alfred@FreeBSD.org> | 2002-06-11 21:22:32 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-06-11 21:22:32 +0000 |
commit | 08b7b4e51b0fce0275e451f3ced80c02395a28a4 (patch) | |
tree | 314415148b51667d69ffe7dbe37e038379cdb249 /sys/dev/hea | |
parent | 12565e644868652f75371a5919260d092396b16e (diff) | |
download | FreeBSD-src-08b7b4e51b0fce0275e451f3ced80c02395a28a4.zip FreeBSD-src-08b7b4e51b0fce0275e451f3ced80c02395a28a4.tar.gz |
This actually compiles under lint now, by effectively #if 0'ing it
when compiling LINT, linking LINT was broke, so unbreak by removing
the preprocessor directives.
Diffstat (limited to 'sys/dev/hea')
-rw-r--r-- | sys/dev/hea/eni.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/dev/hea/eni.c b/sys/dev/hea/eni.c index d1b2ef3..269f376 100644 --- a/sys/dev/hea/eni.c +++ b/sys/dev/hea/eni.c @@ -35,10 +35,6 @@ * */ -#ifdef COMPILING_LINT -#warning "The eni driver is broken and is not compiled with LINT" -#else - #include <sys/param.h> #include <sys/kernel.h> #include <sys/systm.h> @@ -697,4 +693,3 @@ eni_pci_shutdown ( eup, howto ) } #endif /* BSD < 199506 */ #endif -#endif |