diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-07-30 18:08:05 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-07-30 18:08:05 +0000 |
commit | a4f9d953a78f447bb5acb14ad59905bc4a7c845c (patch) | |
tree | 0d2666e373998fd2700f48f364d6201ec1ed4b99 /sys/arch/hp300 | |
parent | 71420a41ccd15226fc1a6b9d004b6d58465feb3e (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/arch/hp300')
-rw-r--r-- | sys/arch/hp300/dev/spc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/dev/spc.c b/sys/arch/hp300/dev/spc.c index 5a3c87c9ae7..c6eb44edfb8 100644 --- a/sys/arch/hp300/dev/spc.c +++ b/sys/arch/hp300/dev/spc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spc.c,v 1.12 2005/11/14 21:51:55 miod Exp $ */ +/* $OpenBSD: spc.c,v 1.13 2008/07/30 18:08:02 miod Exp $ */ /* $NetBSD: spc.c,v 1.2 2003/11/17 14:37:59 tsutsui Exp $ */ /* @@ -140,12 +140,12 @@ spc_dio_attach(struct device *parent, struct device *self, void *aux) if ((hconf & HCONF_PARITY) == 0) printf(", no parity"); - id &= ID_MASK; - printf(", SCSI ID %d\n", id); + printf("\n"); if ((hconf & HCONF_PARITY) != 0) sc->sc_ctlflags = SCTL_PARITY_ENAB; + id &= ID_MASK; sc->sc_initiator = id; if ((sc->sc_dev.dv_cfdata->cf_flags & SPC_NODMA) == 0) { |