summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-07-30 18:08:05 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-07-30 18:08:05 +0000
commita4f9d953a78f447bb5acb14ad59905bc4a7c845c (patch)
tree0d2666e373998fd2700f48f364d6201ec1ed4b99 /sys/dev/ic
parent71420a41ccd15226fc1a6b9d004b6d58465feb3e (diff)
Do not print adapter target id on the attachment line, now that scsibus(4)
prints it. These should be the last offenders.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/dpt.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/ic/dpt.c b/sys/dev/ic/dpt.c
index d77b570094d..c863ca47c57 100644
--- a/sys/dev/ic/dpt.c
+++ b/sys/dev/ic/dpt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dpt.c,v 1.15 2008/06/26 05:42:15 ray Exp $ */
+/* $OpenBSD: dpt.c,v 1.16 2008/07/30 18:08:04 miod Exp $ */
/* $NetBSD: dpt.c,v 1.12 1999/10/23 16:26:33 ad Exp $ */
/*-
@@ -364,13 +364,9 @@ dpt_init(sc, intrstr)
if (intrstr != NULL)
printf("%s: interrupting at %s\n", sc->sc_dv.dv_xname, intrstr);
- printf("%s: %d queued commands, %d channel(s), adapter on ID(s)",
+ printf("%s: %d queued commands, %d channel(s)\n",
sc->sc_dv.dv_xname, sc->sc_nccbs, ec->ec_maxchannel + 1);
- for (i = 0; i <= ec->ec_maxchannel; i++)
- printf(" %d", ec->ec_hba[3 - i]);
- printf("\n");
-
/* Reset the SCSI bus */
if (dpt_cmd(sc, NULL, 0, CP_IMMEDIATE, CPI_BUS_RESET))
panic("%s: dpt_cmd failed", sc->sc_dv.dv_xname);