diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-28 10:54:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-28 10:54:11 +0000 |
commit | 52f8126c711c5f2ca4405d7ce28fd1a99b1795f4 (patch) | |
tree | 20b8a8436cb9b1f8cc47465ea2d33e9972eda636 /sys/arch/mvme68k/dev/siopdma.c | |
parent | 4fff395031ce662196cc65192edec0c62675438b (diff) |
use scsiprint
Diffstat (limited to 'sys/arch/mvme68k/dev/siopdma.c')
-rw-r--r-- | sys/arch/mvme68k/dev/siopdma.c | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/sys/arch/mvme68k/dev/siopdma.c b/sys/arch/mvme68k/dev/siopdma.c index f5df9bf4036..452d522de76 100644 --- a/sys/arch/mvme68k/dev/siopdma.c +++ b/sys/arch/mvme68k/dev/siopdma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: siopdma.c,v 1.5 1996/11/23 21:46:01 kstailey Exp $ */ +/* $OpenBSD: siopdma.c,v 1.6 1997/01/28 10:53:41 deraadt Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -60,7 +60,6 @@ int afscmatch __P((struct device *, void *, void *)); void afscattach __P((struct device *, struct device *, void *)); -int afscprint __P((void *auxp, const char *)); int siopintr __P((struct siop_softc *)); int afsc_dmaintr __P((struct siop_softc *)); @@ -177,24 +176,11 @@ afscattach(parent, self, auxp) tmp = bootpart; if (ca->ca_paddr != bootaddr) bootpart = -1; /* invalid flag to dk_establish */ - config_found(self, &sc->sc_link, afscprint); + config_found(self, &sc->sc_link, scsiprint); bootpart = tmp; /* restore old value */ } -/* - * print diag if pnp is NULL else just extra - */ -int -afscprint(auxp, pnp) - void *auxp; - const char *pnp; -{ - if (pnp == NULL) - return (UNCONF); - return (QUIET); -} - int afsc_dmaintr(sc) struct siop_softc *sc; |