summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2020-07-11 13:34:07 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2020-07-11 13:34:07 +0000
commit621efc31a8ef963024bc2344bbe721d839125ed9 (patch)
treee17d4f82c756703eb31ed07549e24b77cb916671 /sys/arch/sparc64
parentceb3ad3aa14b2d3568507c69e73233bcb95139ca (diff)
Expunge some Captain Obvious comments, tweak whitespace a bit, move a debug
statement. All to make upcoming diff(s) smaller and easier to read.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r--sys/arch/sparc64/dev/vdsk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/vdsk.c b/sys/arch/sparc64/dev/vdsk.c
index 169bd83998a..078c7240e3c 100644
--- a/sys/arch/sparc64/dev/vdsk.c
+++ b/sys/arch/sparc64/dev/vdsk.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vdsk.c,v 1.56 2020/06/27 14:29:44 krw Exp $ */
+/* $OpenBSD: vdsk.c,v 1.57 2020/07/11 13:34:05 krw Exp $ */
/*
* Copyright (c) 2009, 2011 Mark Kettenis
*
@@ -347,7 +347,6 @@ vdsk_attach(struct device *parent, struct device *self, void *aux)
sc->sc_link.adapter = &vdsk_switch;
sc->sc_link.adapter_softc = self;
- /* Only valid target/lun is 0/0. */
sc->sc_link.adapter_buswidth = 1;
sc->sc_link.luns = 1;
sc->sc_link.adapter_target = SDEV_NO_ADAPTER_TARGET;
@@ -355,6 +354,7 @@ vdsk_attach(struct device *parent, struct device *self, void *aux)
sc->sc_link.pool = &sc->sc_iopool;
saa.saa_sc_link = &sc->sc_link;
+
config_found(self, &saa, scsiprint);
return;