diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-01-16 19:47:51 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-01-16 19:47:51 +0000 |
commit | 0af92e0e3bbb14cb90ec458b6cc08e41846cac95 (patch) | |
tree | 5cdb9847db795c4a6392fd2fdee1f0c42ca95137 /sys/dev/isa/aha.c | |
parent | 2d5bfedcd7e07da5bcf8c22ab3a3b1a9183d87b2 (diff) |
ahaprint() & btprint() -> scsiprint()
Diffstat (limited to 'sys/dev/isa/aha.c')
-rw-r--r-- | sys/dev/isa/aha.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c index 2368691d303..2f544c80add 100644 --- a/sys/dev/isa/aha.c +++ b/sys/dev/isa/aha.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aha.c,v 1.27 1996/11/23 21:46:35 kstailey Exp $ */ +/* $OpenBSD: aha.c,v 1.28 1997/01/16 19:47:47 kstailey Exp $ */ /* $NetBSD: aha.c,v 1.11 1996/05/12 23:51:23 mycroft Exp $ */ #undef AHADIAG @@ -172,7 +172,6 @@ struct scsi_device aha_dev = { int ahaprobe __P((struct device *, void *, void *)); void ahaattach __P((struct device *, struct device *, void *)); -int ahaprint __P((void *, const char *)); struct cfattach aha_ca = { sizeof(struct aha_softc), ahaprobe, ahaattach @@ -354,17 +353,6 @@ ahaprobe(parent, match, aux) return 1; } -int -ahaprint(aux, name) - void *aux; - const char *name; -{ - - if (name != NULL) - printf("%s: scsibus ", name); - return UNCONF; -} - /* * Attach all the sub-devices we can find */ @@ -406,7 +394,7 @@ ahaattach(parent, self, aux) /* * ask the adapter what subunits are present */ - config_found(self, &sc->sc_link, ahaprint); + config_found(self, &sc->sc_link, scsiprint); } integrate void |