summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2020-07-11 14:25:59 +0000
committerkrw <krw@openbsd.org>2020-07-11 14:25:59 +0000
commit52a655cb10853eb6247dad785f74bfb360dc2443 (patch)
treeaf229de814002470f12ab393a810ce72d1d21480
parentExpunge some Captain Obvious comments, tweak whitespace a bit, move a debug (diff)
downloadwireguard-openbsd-52a655cb10853eb6247dad785f74bfb360dc2443.tar.xz
wireguard-openbsd-52a655cb10853eb6247dad785f74bfb360dc2443.zip
Expunge some Captain Obvious comments to make upcoming diff(s) smaller
and easier to read.
-rw-r--r--sys/dev/ic/aic7xxx_openbsd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/ic/aic7xxx_openbsd.c b/sys/dev/ic/aic7xxx_openbsd.c
index 677c96b3314..44ff699e848 100644
--- a/sys/dev/ic/aic7xxx_openbsd.c
+++ b/sys/dev/ic/aic7xxx_openbsd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aic7xxx_openbsd.c,v 1.62 2020/07/05 21:54:44 krw Exp $ */
+/* $OpenBSD: aic7xxx_openbsd.c,v 1.63 2020/07/11 14:25:59 krw Exp $ */
/* $NetBSD: aic7xxx_osm.c,v 1.14 2003/11/02 11:07:44 wiz Exp $ */
/*
@@ -75,9 +75,6 @@ ahc_attach(struct ahc_softc *ahc)
s = splbio();
- /*
- * fill in the prototype scsi_links.
- */
ahc->sc_channel.adapter_target = ahc->our_id;
if (ahc->features & AHC_WIDE)
ahc->sc_channel.adapter_buswidth = 16;
@@ -87,7 +84,6 @@ ahc_attach(struct ahc_softc *ahc)
ahc->sc_channel.pool = &ahc->sc_iopool;
if (ahc->features & AHC_TWIN) {
- /* Configure the second scsi bus */
ahc->sc_channel_b = ahc->sc_channel;
ahc->sc_channel_b.adapter_target = ahc->our_id_b;
}