summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorflipk <flipk@cvs.openbsd.org>1997-01-23 04:13:53 +0000
committerflipk <flipk@cvs.openbsd.org>1997-01-23 04:13:53 +0000
commited89f2c422385e7460ec3b91f46ea3e4c5edd687 (patch)
tree4595cf106ee90abb2a34662382f5cfd11328402f /sys/dev
parentf0288fffae278597de601974f5fe9809c0b82b84 (diff)
changed aicprint() to scsiprint()
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/aic6360.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/sys/dev/isa/aic6360.c b/sys/dev/isa/aic6360.c
index 203c32051ee..5ab580f679e 100644
--- a/sys/dev/isa/aic6360.c
+++ b/sys/dev/isa/aic6360.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aic6360.c,v 1.10 1996/11/23 21:46:36 kstailey Exp $ */
+/* $OpenBSD: aic6360.c,v 1.11 1997/01/23 04:13:52 flipk Exp $ */
/* $NetBSD: aic6360.c,v 1.46 1996/05/12 23:51:37 mycroft Exp $ */
#define integrate static inline
@@ -582,7 +582,6 @@ int aic_debug = 0x00; /* AIC_SHOWSTART|AIC_SHOWMISC|AIC_SHOWTRACE; */
int aicprobe __P((struct device *, void *, void *));
void aicattach __P((struct device *, struct device *, void *));
-int aicprint __P((void *, const char *));
void aic_minphys __P((struct buf *));
int aicintr __P((void *));
void aic_init __P((struct aic_softc *));
@@ -753,16 +752,6 @@ aic_find(sc)
return 0;
}
-int
-aicprint(aux, name)
- void *aux;
- const char *name;
-{
- if (name != NULL)
- printf("%s: scsibus ", name);
- return UNCONF;
-}
-
/*
* Attach the AIC6360, fill out some high and low level data structures
*/
@@ -795,7 +784,7 @@ aicattach(parent, self, aux)
sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
IPL_BIO, aicintr, sc, sc->sc_dev.dv_xname);
- config_found(self, &sc->sc_link, aicprint);
+ config_found(self, &sc->sc_link, scsiprint);
}