Fix two typos in previous commit.

This commit is contained in:
Joerg Wunsch 2001-12-30 19:37:41 +00:00
parent 6d994e13c8
commit 230ce3668b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88718
2 changed files with 2 additions and 2 deletions

View file

@ -246,7 +246,7 @@ i4bingattach(void *dummy)
sc->sc_state = ST_IDLE;
sc->sc_fastq.ifq_maxlen = I4BINGMAXQLEN;
if(!mtx_initiallized(&sc->sc_fastq.ifq_mtx))
if(!mtx_initialized(&sc->sc_fastq.ifq_mtx))
mtx_init(&sc->sc_fastq.ifq_mtx, "i4b_ing_fastq", MTX_DEF);
#if I4BINGACCT

View file

@ -454,7 +454,7 @@ iwic_bchannel_setup(int unit, int chan_no, int bprot, int activate)
chan->tx_queue.ifq_maxlen = IFQ_MAXLEN;
#if defined (__FreeBSD__) && __FreeBSD__ > 4
if(!mtx_initqialized(&chan->tx_queue.ifq_mtx))
if(!mtx_initialized(&chan->tx_queue.ifq_mtx))
mtx_init(&chan->tx_queue.ifq_mtx, "i4b_iwic_tx", MTX_DEF);
#endif