diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-11-19 18:36:19 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-11-19 18:36:19 +0000 |
commit | f8eb256c65fe796edfbbb90ae32c5502ca585795 (patch) | |
tree | 90bfb3141076a93dd45b97c7da2903fd4ebd8507 /sys/dev/pcmcia/if_rln_pcmcia.c | |
parent | c9e49ad98cb86122f4be405756296ca6ce04c29e (diff) |
Use queue.h macros instead of using the structure names directly.
Diffstat (limited to 'sys/dev/pcmcia/if_rln_pcmcia.c')
-rw-r--r-- | sys/dev/pcmcia/if_rln_pcmcia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pcmcia/if_rln_pcmcia.c b/sys/dev/pcmcia/if_rln_pcmcia.c index 63b2a96b92a..abec1002ce1 100644 --- a/sys/dev/pcmcia/if_rln_pcmcia.c +++ b/sys/dev/pcmcia/if_rln_pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rln_pcmcia.c,v 1.13 2002/03/14 01:27:01 millert Exp $ */ +/* $OpenBSD: if_rln_pcmcia.c,v 1.14 2002/11/19 18:36:18 jason Exp $ */ /* * David Leonard <d@openbsd.org>, 1999. Public domain. * @@ -140,7 +140,7 @@ rln_pcmcia_attach(parent, self, aux) struct rln_pcmcia_product *rpp; psc->psc_pf = pa->pf; - cfe = psc->psc_pf->cfe_head.sqh_first; + cfe = SIMPLEQ_FIRST(&psc->psc_pf->cfe_head); /* Guess the transfer width we will be using */ if (cfe->flags & PCMCIA_CFE_IO16) |