diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 10:42:59 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 10:42:59 +0000 |
commit | f7d56021881d27ab5b1b4d5aeef73097bc2c9888 (patch) | |
tree | 87ee689654cb35efcf0e188b4e92629ecce83f6f /sys | |
parent | 4b5921753c514eaf173a89c900d75e2dd5c06c84 (diff) |
Correct attach output
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/eisa/aha1742.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/eisa/aha1742.c b/sys/dev/eisa/aha1742.c index 52645cf86e6..93f90af8452 100644 --- a/sys/dev/eisa/aha1742.c +++ b/sys/dev/eisa/aha1742.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aha1742.c,v 1.9 1996/05/26 00:26:52 deraadt Exp $ */ +/* $OpenBSD: aha1742.c,v 1.10 1996/06/02 10:42:58 tholo Exp $ */ /* $NetBSD: aha1742.c,v 1.61 1996/05/12 23:40:01 mycroft Exp $ */ /* @@ -506,6 +506,7 @@ ahbattach(parent, self, aux) model = EISA_PRODUCT_ADP0400; else model = "unknown model!"; + printf(": <%s> ", model); if (eisa_intr_map(ec, sc->sc_irq, &ih)) { printf("%s: couldn't map interrupt (%d)\n", @@ -524,8 +525,7 @@ ahbattach(parent, self, aux) return; } if (intrstr != NULL) - printf("%s: interrupting at %s\n", sc->sc_dev.dv_xname, - intrstr); + printf("%s\n", intrstr); /* * ask the adapter what subunits are present |