diff options
author | gene <gene@cvs.openbsd.org> | 1998-04-27 02:04:36 +0000 |
---|---|---|
committer | gene <gene@cvs.openbsd.org> | 1998-04-27 02:04:36 +0000 |
commit | 5ecbdb4ab5d8453a2a3599c15c7fdebee9cb4159 (patch) | |
tree | 1c59128b276787542e8839c7f15048507b2a7020 /sys/arch/mac68k/dev/asc.c | |
parent | 8754c92e3dae4b5f687f408c908b66ac254d4aa2 (diff) |
Adapt to new bus_space functions after fixing namespace issues.
Diffstat (limited to 'sys/arch/mac68k/dev/asc.c')
-rw-r--r-- | sys/arch/mac68k/dev/asc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/dev/asc.c b/sys/arch/mac68k/dev/asc.c index 349165904dc..e28c325f1d7 100644 --- a/sys/arch/mac68k/dev/asc.c +++ b/sys/arch/mac68k/dev/asc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asc.c,v 1.6 1997/03/08 16:16:48 briggs Exp $ */ +/* $OpenBSD: asc.c,v 1.7 1998/04/27 02:04:32 gene Exp $ */ /* $NetBSD: asc.c,v 1.20 1997/02/24 05:47:33 scottr Exp $ */ /* @@ -123,7 +123,7 @@ ascmatch(parent, vcf, aux) if (bus_space_map(oa->oa_tag, addr, MAC68K_ASC_LEN, 0, &bsh)) return (0); - if (bus_probe(oa->oa_tag, bsh, 0, 1)) + if (mac68k_bus_space_probe(oa->oa_tag, bsh, 0, 1)) rval = 1; else rval = 0; |