diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-27 01:16:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-27 01:16:26 +0000 |
commit | 34e97fb86fd59761215d63f50752613971253cee (patch) | |
tree | e9102724cd582e0e058787ad621ffcc1440265dc /sys/arch/mvme88k | |
parent | 7448d917b92d9610173179c2f2152b3f83d3c3c4 (diff) |
Make this compile correctly for non-mvme187 compatible kernel
configurations.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/dev/vsdma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/dev/vsdma.c b/sys/arch/mvme88k/dev/vsdma.c index f0cc0e628c1..e486117f1e1 100644 --- a/sys/arch/mvme88k/dev/vsdma.c +++ b/sys/arch/mvme88k/dev/vsdma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vsdma.c,v 1.5 2001/03/09 05:44:39 smurph Exp $ */ +/* $OpenBSD: vsdma.c,v 1.6 2001/03/27 01:16:25 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * All rights reserved. @@ -46,7 +46,7 @@ #include <scsi/scsiconf.h> #include <machine/autoconf.h> -#if defined(MVME187) +#ifdef mvme88k #include <machine/board.h> #include <mvme88k/dev/vsreg.h> #include <mvme88k/dev/vsvar.h> @@ -55,7 +55,7 @@ #include <mvme68k/dev/vsreg.h> #include <mvme68k/dev/vsvar.h> #include <mvme68k/dev/vme.h> -#endif /* defined(MVME187) */ +#endif /* mvme88k */ int vsmatch __P((struct device *, void *, void *)); void vsattach __P((struct device *, struct device *, void *)); |