Home
last modified time | relevance | path

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

/linux-2.6.39/drivers/staging/winbond/
Dwb35rx.c19 static void packet_came(struct ieee80211_hw *hw, char *pRxBufferAddress, int PacketSize) in packet_came() argument
28 skb = dev_alloc_skb(PacketSize); in packet_came()
34 memcpy(skb_put(skb, PacketSize), pRxBufferAddress, PacketSize); in packet_came()
80 u16 PacketSize; in Wb35Rx_indicate() local
103 PacketSize = (u16)RxDes.R00.R00_receive_byte_count; in Wb35Rx_indicate()
106 if ((PacketSize & 0x03) > 0) in Wb35Rx_indicate()
107 PacketSize -= 4; in Wb35Rx_indicate()
110 if (PacketSize > MAX_PACKET_SIZE) { in Wb35Rx_indicate()
111 pr_debug("Serious ERROR : Rx data size too long, size =%d\n", PacketSize); in Wb35Rx_indicate()
125 RxDes.buffer_size[0] = PacketSize; in Wb35Rx_indicate()
[all …]
Dmds.c444 u16 XmitBufSize, PacketSize, stmp, CurrentSize, FragmentThreshold; in Mds_Tx() local
470 PacketSize = adapter->sMlmeFrame.len; in Mds_Tx()
471 if (!PacketSize) in Mds_Tx()
477 FragmentCount = PacketSize/FragmentThreshold + 1; in Mds_Tx()
478 stmp = PacketSize + FragmentCount*32 + 8; /* 931130.5.c 8:MIC */ in Mds_Tx()
506 pr_debug("35: EPA 4th frame detected. Size = %d\n", PacketSize); in Mds_Tx()
548 if (!PacketSize) /* No more pk for transmitting */ in Mds_Tx()
Dwb35rx_s.h33 u16 PacketSize; member