ahaprint() & btprint() -> scsiprint()
authorkstailey <kstailey@openbsd.org>
Thu, 16 Jan 1997 19:47:47 +0000 (19:47 +0000)
committerkstailey <kstailey@openbsd.org>
Thu, 16 Jan 1997 19:47:47 +0000 (19:47 +0000)
sys/dev/isa/aha.c
sys/dev/isa/bt.c

index 2368691..2f544c8 100644 (file)
@@ -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
index 8820f0e..4840c08 100644 (file)
@@ -182,7 +182,6 @@ struct scsi_device bt_dev = {
 
 int    btprobe __P((struct device *, void *, void *));
 void   btattach __P((struct device *, struct device *, void *));
-int    btprint __P((void *, const char *));
 
 struct cfattach bt_ca = {
        sizeof(struct bt_softc), btprobe, btattach
@@ -356,17 +355,6 @@ btprobe(parent, match, aux)
        return 1;
 }
 
-int
-btprint(aux, name)
-       void *aux;
-       const char *name;
-{
-
-       if (name != NULL)
-               printf("%s: scsibus ", name);
-       return UNCONF;
-}
-
 /*
  * Attach all the sub-devices we can find
  */
@@ -408,7 +396,7 @@ btattach(parent, self, aux)
        /*
         * ask the adapter what subunits are present
         */
-       config_found(self, &sc->sc_link, btprint);
+       config_found(self, &sc->sc_link, scsiprint);
 }
 
 integrate void