summaryrefslogtreecommitdiff
path: root/sys/dev/ic/uhavar.h
diff options
context:
space:
mode:
authorMichael Knudsen <mk@cvs.openbsd.org>2010-06-30 19:06:17 +0000
committerMichael Knudsen <mk@cvs.openbsd.org>2010-06-30 19:06:17 +0000
commitbd6fac7bb3f28e49754bcc5c39542eea2e697256 (patch)
tree6d08156d4e47c6475ec6d0e3df34ca5a56b228ef /sys/dev/ic/uhavar.h
parent93c4ee391ae8e2d74a7c1307b854f4a282104031 (diff)
Use SLIST instead of TAILQ for the ccb free list.
ok krw
Diffstat (limited to 'sys/dev/ic/uhavar.h')
-rw-r--r--sys/dev/ic/uhavar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/uhavar.h b/sys/dev/ic/uhavar.h
index 52dedb68443..64308b6b42e 100644
--- a/sys/dev/ic/uhavar.h
+++ b/sys/dev/ic/uhavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: uhavar.h,v 1.2 2002/03/14 01:26:55 millert Exp $ */
+/* $OpenBSD: uhavar.h,v 1.3 2010/06/30 19:06:16 mk Exp $ */
/* $NetBSD: uhavar.h,v 1.3 1996/10/21 22:34:43 thorpej Exp $ */
/*
@@ -49,7 +49,7 @@ struct uha_softc {
void (*init)(struct uha_softc *);
struct uha_mscp *sc_mscphash[MSCP_HASH_SIZE];
- TAILQ_HEAD(, uha_mscp) sc_free_mscp;
+ SLIST_HEAD(, uha_mscp) sc_free_mscp;
int sc_nummscps;
int sc_scsi_dev; /* our scsi id */
struct scsi_link sc_link;