diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-01-18 17:58:40 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-01-18 17:58:40 +0000 |
commit | fce5a129ba8b5441460461ce9552cfe52234d9b0 (patch) | |
tree | 3e34093b717bd8b8aad563dc3d745e6c2ff48e68 /sys/arch/mac68k/dev/ncr5380.c | |
parent | e03e5456137f26f05d515025983b640f469082a7 (diff) |
Use scsiprint (and remove scsiprint from esp.c).
Diffstat (limited to 'sys/arch/mac68k/dev/ncr5380.c')
-rw-r--r-- | sys/arch/mac68k/dev/ncr5380.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/sys/arch/mac68k/dev/ncr5380.c b/sys/arch/mac68k/dev/ncr5380.c index fd25b26373e..25a854a6578 100644 --- a/sys/arch/mac68k/dev/ncr5380.c +++ b/sys/arch/mac68k/dev/ncr5380.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr5380.c,v 1.10 1996/11/23 21:45:53 kstailey Exp $ */ +/* $OpenBSD: ncr5380.c,v 1.11 1997/01/18 17:58:38 briggs Exp $ */ /* $NetBSD: ncr5380.c,v 1.31 1996/06/23 15:02:58 briggs Exp $ */ /* @@ -197,7 +197,6 @@ extern __inline__ void finish_req(SC_REQ *reqp) /* * Auto config stuff.... */ -int ncr_cprint __P((void *auxp, const char *)); void ncr_attach __P((struct device *, struct device *, void *)); int ncr_match __P((struct device *, void *, void *)); @@ -274,22 +273,10 @@ void *auxp; /* * attach all scsi units on us */ - config_found(dp, &sc->sc_link, ncr_cprint); + config_found(dp, &sc->sc_link, scsiprint); } /* - * print diag if name is NULL else just extra - */ -int -ncr_cprint(auxp, name) -void *auxp; -const char *name; -{ - if (name == NULL) - return (UNCONF); - return (QUIET); -} -/* * End of auto config stuff.... */ |