summaryrefslogtreecommitdiff
path: root/sys/dev/isa/if_iy.c
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-23 02:09:22 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-23 02:09:22 +0000
commitf9755bf58e63d64294c2ae788f024d41b27e3f03 (patch)
treed35920df6651e4cba468be96f4a521d1eb965257 /sys/dev/isa/if_iy.c
parent883624e9986baee8db2f3d68ff2471c6ca9beb00 (diff)
LIST_INIT, not TAILQ_INIT.
Diffstat (limited to 'sys/dev/isa/if_iy.c')
-rw-r--r--sys/dev/isa/if_iy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/if_iy.c b/sys/dev/isa/if_iy.c
index fb12c5d2f62..8c4bc680006 100644
--- a/sys/dev/isa/if_iy.c
+++ b/sys/dev/isa/if_iy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iy.c,v 1.9 2001/05/20 08:32:10 angelos Exp $ */
+/* $OpenBSD: if_iy.c,v 1.10 2001/06/23 02:09:21 angelos Exp $ */
/* $NetBSD: if_iy.c,v 1.4 1996/05/12 23:52:53 mycroft Exp $ */
/* #define IYDEBUG */
/* #define IYMEMDEBUG */
@@ -796,7 +796,7 @@ int iobase, rxlen;
sc->next_mb = (sc->next_mb + 1) % MAX_MBS;
m->m_data = m->m_pktdat;
m->m_flags = M_PKTHDR;
- TAILQ_INIT(&m->m_pkthdr.tags);
+ LIST_INIT(&m->m_pkthdr.tags);
}
m->m_pkthdr.rcvif = ifp;
m->m_pkthdr.len = rxlen;