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/vax | |
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/vax')
-rw-r--r-- | sys/arch/vax/vsa/ncr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/vax/vsa/ncr.c b/sys/arch/vax/vsa/ncr.c index ae6ff045689..b7011f6cb20 100644 --- a/sys/arch/vax/vsa/ncr.c +++ b/sys/arch/vax/vsa/ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr.c,v 1.23 2008/06/26 05:42:14 ray Exp $ */ +/* $OpenBSD: ncr.c,v 1.24 2008/07/30 18:08:04 miod Exp $ */ /* $NetBSD: ncr.c,v 1.32 2000/06/25 16:00:43 ragge Exp $ */ /*- @@ -173,6 +173,8 @@ si_attach(parent, self, aux) struct scsibus_attach_args saa; int tweak, target; + printf("\n"); + /* enable interrupts on vsbus too */ scb_vecalloc(va->va_cvec, (void (*)(void *)) ncr5380_intr, sc, SCB_ISTACK, &sc->ncr_intrcnt); @@ -241,8 +243,6 @@ si_attach(parent, self, aux) else target = (clk_page[0xbc/2] >> tweak) & 7; - printf(": SCSI ID %d\n", target); - ncr_sc->sc_link.adapter_softc = sc; ncr_sc->sc_link.adapter_target = target; ncr_sc->sc_link.adapter = &si_ops; |