• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192e/

Lines Matching refs:pdesc

1520     tx_desc_819x_pci *pdesc = NULL;
1634 pdesc = &ring->desc[idx];
1635 if((pdesc->OWN == 1) && (tcb_desc->queue_index != BEACON_QUEUE)) {
1643 memset((u8*)pdesc,0,12);
1645 pdesc->LINIP = 0;
1646 pdesc->CmdInit = 1;
1647 pdesc->Offset = sizeof(TX_FWINFO_8190PCI) + 8; //We must add 8!! Emily
1648 pdesc->PktSize = (u16)skb->len-sizeof(TX_FWINFO_8190PCI);
1651 pdesc->SecCAMID= 0;
1652 pdesc->RATid = tcb_desc->RATRIndex;
1655 pdesc->NoEnc = 1;
1656 pdesc->SecType = 0x0;
1661 pdesc->SecType = 0x1;
1662 pdesc->NoEnc = 0;
1665 pdesc->SecType = 0x2;
1666 pdesc->NoEnc = 0;
1669 pdesc->SecType = 0x3;
1670 pdesc->NoEnc = 0;
1673 pdesc->SecType = 0x0;
1674 pdesc->NoEnc = 1;
1682 pdesc->PktId = 0x0;
1684 pdesc->QueueSelect = MapHwQueueToFirmwareQueue(tcb_desc->queue_index);
1685 pdesc->TxFWInfoSize = sizeof(TX_FWINFO_8190PCI);
1687 pdesc->DISFB = tcb_desc->bTxDisableRateFallBack;
1688 pdesc->USERATE = tcb_desc->bTxUseDriverAssingedRate;
1690 pdesc->FirstSeg =1;
1691 pdesc->LastSeg = 1;
1692 pdesc->TxBufferSize = skb->len;
1694 pdesc->TxBuffAddr = cpu_to_le32(mapping);
1696 pdesc->OWN = 1;
5469 prx_desc_819x_pci pdesc,
5757 prx_desc_819x_pci pdesc,
5810 rtl8192_query_rxphystatus(priv, pstats, pdesc, pdrvinfo, &previous_stats, bpacket_match_bssid,
5937 rx_desc_819x_pci *pdesc = &priv->rx_ring[priv->rx_idx];//rx descriptor
5940 if (pdesc->OWN){
5944 stats.bICV = pdesc->ICV;
5945 stats.bCRC = pdesc->CRC32;
5946 stats.bHwError = pdesc->CRC32 | pdesc->ICV;
5948 stats.Length = pdesc->Length;
5955 if(pdesc->CRC32) {
5956 if (pdesc->Length <500)
5958 else if (pdesc->Length >1000)
5972 stats.RxDrvInfoSize = pdesc->RxDrvInfoSize;
5973 stats.RxBufShift = ((pdesc->Shift)&0x03);
5974 stats.Decrypted = !pdesc->SWDec;
5980 skb_put(skb, pdesc->Length);
6009 TranslateRxSignalStuff819xpci(dev,skb, &stats, pdesc, pDrvInfo);
6050 pdesc->BufferAddress = cpu_to_le32(*((dma_addr_t *)skb->cb));
6051 pdesc->OWN = 1;
6052 pdesc->Length = priv->rxbuffersize;
6054 pdesc->EOR = 1;