diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-11-18 21:15:16 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-11-18 21:15:16 +0000 |
commit | d76fbed9b047b0950393d391f27749a20f6ec68a (patch) | |
tree | 02818a590fe865434e018b19d1bb8ca0c5b4c1f4 /sys/dev/eisa | |
parent | be90184410fe8aaf59012f30ea8aabcf3e8e800b (diff) |
Don't
#include "foo.h"
#if NFOO > 0
(whole file)
#endif
since config(8) file inclusion rules already do it for you.
ok deraadt@
Diffstat (limited to 'sys/dev/eisa')
-rw-r--r-- | sys/dev/eisa/ahc_eisa.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/eisa/ahc_eisa.c b/sys/dev/eisa/ahc_eisa.c index 0226d074a89..393954d723a 100644 --- a/sys/dev/eisa/ahc_eisa.c +++ b/sys/dev/eisa/ahc_eisa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahc_eisa.c,v 1.19 2009/03/29 21:53:52 sthen Exp $ */ +/* $OpenBSD: ahc_eisa.c,v 1.20 2010/11/18 21:15:15 miod Exp $ */ /* $NetBSD: ahc_eisa.c,v 1.10 1996/10/21 22:30:58 thorpej Exp $ */ /* @@ -32,12 +32,9 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_eisa.c,v 1.19 2009/03/29 21:53:52 sthen Exp $ + * $Id: ahc_eisa.c,v 1.20 2010/11/18 21:15:15 miod Exp $ */ -#include "eisa.h" -#if NEISA > 0 - #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> @@ -327,4 +324,3 @@ void *aux; ahc_attach(ahc); } -#endif /* NEISA > 0 */ |