Home
last modified time | relevance | path

Searched refs:tkipIv (Results 1 – 1 of 1) sorted by relevance

/linux-2.6.39/drivers/staging/rt2860/common/
Dcmm_tkip.c365 struct rt_tkip_iv tkipIv; in RTMPInitTkipEngine() local
368 NdisZeroMemory(&tkipIv, sizeof(struct rt_tkip_iv)); in RTMPInitTkipEngine()
369 tkipIv.IV16.field.rc0 = *(pTSC + 1); in RTMPInitTkipEngine()
370 tkipIv.IV16.field.rc1 = (tkipIv.IV16.field.rc0 | 0x20) & 0x7f; in RTMPInitTkipEngine()
371 tkipIv.IV16.field.rc2 = *pTSC; in RTMPInitTkipEngine()
372 tkipIv.IV16.field.CONTROL.field.ExtIV = 1; /* 0: non-extended IV, 1: an extended IV */ in RTMPInitTkipEngine()
373 tkipIv.IV16.field.CONTROL.field.KeyID = KeyId; in RTMPInitTkipEngine()
375 NdisMoveMemory(&tkipIv.IV32, (pTSC + 2), 4); /* Copy IV */ in RTMPInitTkipEngine()
377 *pIV16 = tkipIv.IV16.word; in RTMPInitTkipEngine()
378 *pIV32 = tkipIv.IV32; in RTMPInitTkipEngine()